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.
1 parent 75ae878 commit 342f54fCopy full SHA for 342f54f
.github/workflows/test-build.yml
@@ -35,4 +35,10 @@ jobs:
35
run: just build
36
37
- name: Run tests
38
- run: uv run --with py-dist/dash_bootstrap_components*.whl pytest --headless tests
+ run: |
39
+ # install the wheel
40
+ uv pip install py-dist/dash_bootstrap_components*.whl
41
+ # manually invoke pytest inside the .venv
42
+ # we can't use uv as `uv run` syncs the source
43
+ source .venv/bin/activate
44
+ pytest --headless tests
0 commit comments