@@ -231,27 +231,30 @@ list-missed-tests: install log-tests test-all
231
231
# test bash shell completions
232
232
[script (" bash" )]
233
233
test-bash :
234
- uv run pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_bash tests/ test_parser_completers.py tests/ shellcompletion/ test_bash.py
234
+ source .venv / bin / activate; pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_bash tests/ test_parser_completers.py tests/ shellcompletion/ test_bash.py
235
235
236
236
# test zsh shell completions
237
237
[script (" zsh" )]
238
238
test-zsh :
239
- uv run pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_zsh tests/ test_parser_completers.py tests/ shellcompletion/ test_zsh.py
239
+ source .venv / bin / activate; pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_zsh tests/ test_parser_completers.py tests/ shellcompletion/ test_zsh.py
240
240
241
241
# test powershell shell completions
242
242
[script (" powershell" )]
243
243
test-powershell :
244
- uv run pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_powershell tests/ test_parser_completers.py tests/ test_parser_completers.py tests/ shellcompletion/ test_powershell.py::PowerShellTests tests/ shellcompletion/ test_powershell.py::PowerShellExeTests
244
+ .venv/ Scripts/ activate.ps1
245
+ pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_powershell tests/ test_parser_completers.py tests/ test_parser_completers.py tests/ shellcompletion/ test_powershell.py::PowerShellTests tests/ shellcompletion/ test_powershell.py::PowerShellExeTests
245
246
246
247
# test pwsh shell completions
247
248
[script (" pwsh" )]
248
249
test-pwsh :
249
- uv run pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_pwsh tests/ test_parser_completers.py tests/ shellcompletion/ test_powershell.py::PWSHTests tests/ shellcompletion/ test_powershell.py::PWSHExeTests
250
+ .venv/ Scripts/ activate.ps1
251
+ pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_pwsh tests/ test_parser_completers.py tests/ shellcompletion/ test_powershell.py::PWSHTests tests/ shellcompletion/ test_powershell.py::PWSHExeTests
250
252
251
253
# test fish shell completions
252
254
[script (" fish" )]
253
255
test-fish :
254
- uv run pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_fish tests/ test_parser_completers.py tests/ shellcompletion/ test_fish.py
256
+ source .venv/ bin/ activate.fish
257
+ pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_fish tests/ test_parser_completers.py tests/ shellcompletion/ test_fish.py
255
258
256
259
# run tests
257
260
test * TESTS :
0 commit comments