Skip to content

Commit

Permalink
run serial tests with a single CPU
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Nov 24, 2024
1 parent 16260bf commit dce5550
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
run: >
pytest
--cov=conda_build
-n auto
-n ${{ env.PYTEST_MARKER == 'serial' && 1 || 'auto' }}
-m "${{ env.PYTEST_MARKER }}"
- name: Upload Coverage
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
pytest
--cov=conda_build
--basetemp=${{ runner.temp }}
-n auto
-n ${{ env.PYTEST_MARKER == 'serial' && 1 || 'auto' }}
-m "${{ env.PYTEST_MARKER }}"
- name: Upload Coverage
Expand Down Expand Up @@ -431,7 +431,7 @@ jobs:
run: >
pytest
--cov=conda_build
-n auto
-n ${{ env.PYTEST_MARKER == 'serial' && 1 || 'auto' }}
-m "${{ env.PYTEST_MARKER }}"
env:
CONDA_BUILD_SYSROOT: ${{ env.MACOSX_SDK_ROOT }}
Expand Down

0 comments on commit dce5550

Please sign in to comment.