@@ -682,9 +682,13 @@ jobs:
682
682
shell : powershell
683
683
- name : Run Powershell Tab Completion Tests
684
684
run : |
685
- just test ./tests/verify_environment.py; if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
686
- .venv\Scripts\activate.ps1; cmd /c "pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::TestShellResolution::test_powershell"; if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
687
- just test-powershell; if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
685
+ just test ./tests/verify_environment.py
686
+ if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
687
+ . .venv\Scripts\activate.ps1
688
+ cmd /c "pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::TestShellResolution::test_powershell"
689
+ if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
690
+ just test-powershell
691
+ if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
688
692
shell : powershell
689
693
- name : Test CMD shell failure
690
694
run : |
@@ -753,8 +757,12 @@ jobs:
753
757
- name : Run Powershell Tab Completion Tests
754
758
run : |
755
759
just test ./tests/verify_environment.py
756
- .venv\Scripts\activate.ps1; cmd /c "pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::TestShellResolution::test_pwsh"; if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
757
- just test-pwsh; if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
760
+ if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
761
+ . .venv\Scripts\activate.ps1
762
+ cmd /c "pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::TestShellResolution::test_pwsh"
763
+ if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
764
+ just test-pwsh
765
+ if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
758
766
shell : pwsh
759
767
- name : Test CMD shell failure
760
768
run : |
0 commit comments