Skip to content

Commit 342f54f

Browse files
committed
Run tests manually
1 parent 75ae878 commit 342f54f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test-build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,10 @@ jobs:
3535
run: just build
3636

3737
- name: Run tests
38-
run: uv run --with py-dist/dash_bootstrap_components*.whl pytest --headless tests
38+
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

Comments
 (0)