Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 5437834
Author: Bradley Dice <[email protected]>
Date:   Sat Dec 19 21:16:36 2020 -0600

    Try enabling concurrency, parallel to fix macOS failure.

commit 08f024a
Author: Bradley Dice <[email protected]>
Date:   Sat Dec 19 20:49:15 2020 -0600

    Fix coverage configuration to read from setup.py.
  • Loading branch information
bdice committed Dec 20, 2020
1 parent 313e5e2 commit 5b053c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
name: Run tests
command: |
. venv/bin/activate
${PYTHON} -m pytest --cov=signac --cov-report=xml tests/ -v
${PYTHON} -m pytest --cov signac --cov-config=setup.cfg --cov-report=xml tests/ -v
codecov
- store_artifacts:
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ ignore = D105, D107, D203, D204, D213
ignore_missing_imports = True

[coverage:run]
branch = True
concurrency = thread,multiprocessing
parallel = True
source = signac
omit =
*/signac/common/configobj/*.py
Expand Down

0 comments on commit 5b053c0

Please sign in to comment.