From e77fcdcaf5b77546fd5a9802fce759020286ddf8 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 2 Mar 2022 17:47:44 -0600 Subject: [PATCH] Use 2 CPUs. --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 809fdb5f9..634251075 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: @@ -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: @@ -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: