Skip to content

Commit

Permalink
Do not use pytest-xdist on python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-wieser committed Sep 1, 2020
1 parent cc2fb44 commit 719f93a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@ defaults: &defaults
PYTEST_ARGS+=(-k "$PYTEST_K_FILTER");
fi;
# xdist crashes on 3.5, https://github.com/pygae/galgebra/issues/438
if [[ "$CIRCLE_JOB" != "python-3.5" ]]; then
PYTEST_ARGS+=(-n 2 --dist loadscope);
fi;
mkdir -p test-reports/pytest
pytest -n 2 \
--dist loadscope \
pytest \
--cov=galgebra \
--nbval examples/ipython/ \
test \
Expand Down

0 comments on commit 719f93a

Please sign in to comment.