File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -95,17 +95,12 @@ jobs:
9595 run : uv sync
9696
9797 - name : Test import with uv
98- run : |
99- source .venv/bin/activate || .venv\\Scripts\\activate
100- python -c 'import nbtools; print("nbtools version:", nbtools.__version__)'
98+ run : uv run python -c 'import nbtools; print("nbtools version:", nbtools.__version__)'
10199
102100 - name : Test console scripts with uv
103- run : |
104- source .venv/bin/activate || .venv\\Scripts\\activate
105- nbstat --help
101+ run : uv run nbstat --help
106102
107103 - name : Test optional dependencies with uv
108104 run : |
109105 uv sync --extra dev --extra nbrun
110- source .venv/bin/activate || .venv\\Scripts\\activate
111- python -c 'import ruff; print("ruff available")'
106+ uv run python -c 'import ruff; print("ruff available")'
You can’t perform that action at this time.
0 commit comments