File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -662,6 +662,11 @@ jobs:
662
662
just test-powershell
663
663
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
664
664
shell : powershell
665
+ - name : Test CMD shell failure
666
+ run : |
667
+ call .venv\Scripts\activate
668
+ pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::test_get_win_shell_failure
669
+ shell : cmd
665
670
- name : Store coverage files
666
671
uses : actions/upload-artifact@v4
667
672
with :
Original file line number Diff line number Diff line change @@ -243,12 +243,12 @@ test-zsh:
243
243
# test powershell shell completions
244
244
[script (" powershell" )]
245
245
test-powershell :
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
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
247
247
248
248
# test pwsh shell completions
249
249
[script (" pwsh" )]
250
250
test-pwsh :
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
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
252
252
253
253
# test fish shell completions
254
254
[script (" fish" )]
You can’t perform that action at this time.
0 commit comments