Skip to content

Commit 27010d1

Browse files
authored
[Windows] Write command in multiple lines (#3794)
1 parent c34de5e commit 27010d1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/windows_impl.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,9 @@ jobs:
117117
- name: Run libmamba Python bindings tests
118118
run: |
119119
# Only rerun flaky tests on the `main` branch
120-
python -m pytest libmambapy/tests/ ${{ runner.debug == 'true' && '-v --capture=tee-sys' || '--exitfirst' }} ${{ github.ref == 'refs/heads/main' && '--reruns 3' || '' }}
120+
python -m pytest libmambapy/tests/ ^
121+
${{ runner.debug == 'true' && '-v --capture=tee-sys' || '--exitfirst' }} ^
122+
${{ github.ref == 'refs/heads/main' && '--reruns 3' || '' }}
121123
122124
mamba_integration_tests_win:
123125
name: mamba integration tests
@@ -151,4 +153,6 @@ jobs:
151153
$env:MAMBA_TEST_SHELL_TYPE='powershell'
152154
Remove-Item -Path "env:CONDARC"
153155
# Only rerun flaky tests on the `main` branch
154-
python -m pytest micromamba/tests/ ${{ runner.debug == 'true' && '-v --capture=tee-sys' || '--exitfirst' }} ${{ github.ref == 'refs/heads/main' && '--reruns 3' || '' }}
156+
python -m pytest micromamba/tests/ `
157+
${{ runner.debug == 'true' && '-v --capture=tee-sys' || '--exitfirst' }} `
158+
${{ github.ref == 'refs/heads/main' && '--reruns 3' || '' }}

0 commit comments

Comments
 (0)