@@ -233,30 +233,27 @@ list-missed-tests: install log-tests test-all
233
233
# test bash shell completions
234
234
[script (" bash" )]
235
235
test-bash :
236
- 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
236
+ 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
237
237
238
238
# test zsh shell completions
239
239
[script (" zsh" )]
240
240
test-zsh :
241
- 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
241
+ 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
242
242
243
243
# test powershell shell completions
244
244
[script (" powershell" )]
245
245
test-powershell :
246
- .venv/ Scripts/ activate.ps1
247
- 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
246
+ .venv/ Scripts/ activate.ps1 && 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
248
247
249
248
# test pwsh shell completions
250
249
[script (" pwsh" )]
251
250
test-pwsh :
252
- .venv/ Scripts/ activate.ps1
253
- 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
251
+ .venv/ Scripts/ activate.ps1 && 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
254
252
255
253
# test fish shell completions
256
254
[script (" fish" )]
257
255
test-fish :
258
- source .venv/ bin/ activate.fish
259
- 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 && pytest --cov-append tests/ shellcompletion/ test_shell_resolution.py::TestShellResolution::test_fish tests/ test_parser_completers.py tests/ shellcompletion/ test_fish.py
260
257
261
258
# run tests
262
259
test * TESTS :
0 commit comments