File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -659,7 +659,7 @@ jobs:
659
659
- name : Run Powershell Tab Completion Tests
660
660
run : |
661
661
just test ./tests/verify_environment.py
662
- .venv\Scripts\activate.ps1; cmd /c "pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::TestShellResolution::test_powershell" || exit 1
662
+ .venv\Scripts\activate.ps1; cmd /c "pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::TestShellResolution::test_powershell"; if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
663
663
just test-powershell
664
664
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
665
665
shell : powershell
@@ -728,7 +728,7 @@ jobs:
728
728
- name : Run Powershell Tab Completion Tests
729
729
run : |
730
730
just test ./tests/verify_environment.py
731
- .venv\Scripts\activate.ps1; cmd /c "pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::TestShellResolution::test_pwsh" || exit 1
731
+ .venv\Scripts\activate.ps1; cmd /c "pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::TestShellResolution::test_pwsh"; if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
732
732
just test-pwsh
733
733
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
734
734
shell : powershell
You can’t perform that action at this time.
0 commit comments