Skip to content

Commit

Permalink
Merge pull request #340 from plotly/run-tests-on-dist
Browse files Browse the repository at this point in the history
Run pytest after package installation
  • Loading branch information
ndrezn authored Nov 22, 2024
2 parents 04b307c + b5b58e2 commit f81e04e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,36 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Setup uv
- name: Setup dependencies
# Set up the virtual environment and install dev dependencies (JS & Python)
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv
source .venv/bin/activate
uv pip install ".[dev]"
npm i
shell: bash
- name: Run all tests
- name: Run tests
# Run all tests before generating the distribution
run: |
source .venv/bin/activate
uv pip install ".[dev]"
pytest --headless
npm run build
npm run test
shell: bash
- name: Generate distribution
# Run setup.py to generate the distribution
run: |
source .venv/bin/activate
uv pip install -r requires-dev.txt -r requires-install.txt
npm i
npm run dist
npm pack && mv *.tgz dist/
- name: Validate distribution
# Run tests again using the generated wheel file
run: |
uv venv test-dist
source dist/bin/activate
WHL_FILE=$(ls dist/*.whl)
uv pip install "${WHL_FILE}[dev]"
npm run test
shell: bash
- uses: ncipollo/release-action@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"private::lint.eslint": "eslint src",
"private::lint.prettier": "prettier src --list-different --ignore-path=.prettierignore",
"lint": "run-s private::lint.*",
"test": "pytest --headless",
"dist": "npm run build && run-s pre-flight-dag-version && rimraf build dist && python setup.py sdist bdist_wheel"
},
"author": "Plotly <[email protected]>",
Expand Down

0 comments on commit f81e04e

Please sign in to comment.