Skip to content

Commit fc6b8b3

Browse files
committed
try fix coverage
1 parent 5b21500 commit fc6b8b3

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

justfile

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -233,30 +233,27 @@ list-missed-tests: install log-tests test-all
233233
# test bash shell completions
234234
[script("bash")]
235235
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
237237

238238
# test zsh shell completions
239239
[script("zsh")]
240240
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
242242

243243
# test powershell shell completions
244244
[script("powershell")]
245245
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
248247

249248
# test pwsh shell completions
250249
[script("pwsh")]
251250
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
254252

255253
# test fish shell completions
256254
[script("fish")]
257255
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
260257

261258
# run tests
262259
test *TESTS:

0 commit comments

Comments
 (0)