diff --git a/.github/workflows/unix_impl.yml b/.github/workflows/unix_impl.yml index fff6bdc1cb..6a282361c8 100644 --- a/.github/workflows/unix_impl.yml +++ b/.github/workflows/unix_impl.yml @@ -166,9 +166,7 @@ jobs: export TEST_MAMBA_EXE=$(pwd)/build/micromamba/mamba unset CONDARC # Interferes with tests # 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/test_create.py" -vvvl --capture=tee-sys verify_pkg_tests: name: mamba-content-trust tests diff --git a/.github/workflows/windows_impl.yml b/.github/workflows/windows_impl.yml index c15bac6a62..ae8bbae3f0 100644 --- a/.github/workflows/windows_impl.yml +++ b/.github/workflows/windows_impl.yml @@ -151,4 +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/test_create.py" -vvvl --capture=tee-sys