Skip to content

Commit

Permalink
Update shell command in GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
melund committed Feb 17, 2024
1 parent daf3a38 commit feebf80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
--durations=20 `
--store-durations --clean-durations `
--runslow
shell: pixi run -e test pwsh -File {0}
shell: pwsh -command "pixi run -e test pwsh '{0}'"
env:
RLM_LICENSE_PASSWORD: ${{ secrets.LICENSE_PASSWORD }}
RLM_LICENSE: ${{ secrets.LICENSE_SERVER }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-forks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
& $HOME/.pixi/bin/pixi.exe install
- name: Run AMMR tests
shell: pixi run -e test pwsh -File {0}
shell: pwsh -command "pixi run -e test pwsh '{0}'"
run: |
cd Tests
pytest -n 5 --dist worksteal `
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-self-hosted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
connection-string: ${{ secrets.AZURE_CONN_STR }}

- name: Run AMMR tests
shell: pixi run -e test pwsh -File {0}
shell: pwsh -command "pixi run -e test pwsh '{0}'"
run: |
cd Tests
pytest -n 5 --dist worksteal `
Expand Down

0 comments on commit feebf80

Please sign in to comment.