Skip to content

Commit

Permalink
Write command in multiple lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Hind-M committed Feb 4, 2025
1 parent 09f87f1 commit ffd254e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/windows_impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ jobs:
- name: Run libmamba Python bindings tests
run: |
# Only rerun flaky tests on the `main` branch
python -m pytest libmambapy/tests/ ${{ runner.debug == 'true' && '-v --capture=tee-sys' || '--exitfirst' }} ${{ github.ref == 'refs/heads/main' && '--reruns 3' || '' }}
python -m pytest libmambapy/tests/ ^
${{ runner.debug == 'true' && '-v --capture=tee-sys' || '--exitfirst' }} ^
${{ github.ref == 'refs/heads/main' && '--reruns 3' || '' }}
mamba_integration_tests_win:
name: mamba integration tests
Expand Down Expand Up @@ -151,4 +153,6 @@ jobs:
$env:MAMBA_TEST_SHELL_TYPE='powershell'
Remove-Item -Path "env:CONDARC"
# Only rerun flaky tests on the `main` branch
python -m pytest micromamba/tests/ ${{ runner.debug == 'true' && '-v --capture=tee-sys' || '--exitfirst' }} ${{ github.ref == 'refs/heads/main' && '--reruns 3' || '' }}
python -m pytest micromamba/tests/ `
${{ runner.debug == 'true' && '-v --capture=tee-sys' || '--exitfirst' }} `
${{ github.ref == 'refs/heads/main' && '--reruns 3' || '' }}

0 comments on commit ffd254e

Please sign in to comment.