mirror of https://github.com/mamba-org/mamba.git
[Windows] Write command in multiple lines (#3794)
This commit is contained in:
parent
c34de5e488
commit
27010d1acb
|
@ -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
|
||||
|
@ -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' || '' }}
|
||||
|
|
Loading…
Reference in New Issue