Skip to content

Commit

Permalink
Use 2 CPUs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Mar 2, 2022
1 parent e05e3f7 commit e77fcdc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
name: Run tests
command: |
. venv/bin/activate
${PYTHON} -m pytest -n auto --cov=signac --cov-config=setup.cfg --cov-report=xml tests/ -v
${PYTHON} -m pytest -n 2 --cov=signac --cov-config=setup.cfg --cov-report=xml tests/ -v
codecov
- store_artifacts:
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
- run:
name: Run tests
command: |
${PYTHON} -m pytest -n auto --cov=signac --cov-report=xml tests/ -v
${PYTHON} -m pytest -n 2 --cov=signac --cov-report=xml tests/ -v
codecov
macos-python-3:
Expand All @@ -195,7 +195,7 @@ jobs:
python -m pip install --progress-bar off -U -r requirements/requirements-test.txt
python -m pip install --progress-bar off -U -r requirements/requirements-test-optional.txt
python -m pip install --progress-bar off -U -e .
python -m pytest -n auto --cov=signac --cov-report=xml tests/ -v
python -m pytest -n 2 --cov=signac --cov-report=xml tests/ -v
codecov
check-metadata:
Expand Down

0 comments on commit e77fcdc

Please sign in to comment.