mirror of https://github.com/mamba-org/mamba.git
ci: Fix typo in Windows workflows (#3793)
Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>
This commit is contained in:
parent
eba1f3e2da
commit
d24f5d80bc
|
@ -117,9 +117,7 @@ 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
|
||||
|
@ -153,6 +151,4 @@ 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