Skip to content
Closed
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,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-report=xml tests/test_shell.py -v
codecov

- store_artifacts:
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- run:
name: run tests
command: |
python -m pytest tests/ -v
python -m pytest tests/test_shell.py -v
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you change the tests command here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just want to check the test_find in test_shell first. So changed it for simplicity. Forgot to revert back


check-metadata:
docker:
Expand Down
Loading