We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f81e04e + 74c1f36 commit 71ae0ecCopy full SHA for 71ae0ec
.github/workflows/release.yml
@@ -28,12 +28,10 @@ jobs:
28
uv pip install ".[dev]"
29
npm i
30
shell: bash
31
- - name: Run tests
32
- # Run all tests before generating the distribution
+ - name: Build package
33
run: |
34
source .venv/bin/activate
35
npm run build
36
- npm run test
37
38
- name: Generate distribution
39
# Run setup.py to generate the distribution
@@ -45,7 +43,7 @@ jobs:
45
43
# Run tests again using the generated wheel file
46
44
47
uv venv test-dist
48
- source dist/bin/activate
+ source test-dist/bin/activate
49
WHL_FILE=$(ls dist/*.whl)
50
uv pip install "${WHL_FILE}[dev]"
51
npm run test
0 commit comments