Skip to content

Commit

Permalink
updated the CircleCI config file to move the test dependencies instal…
Browse files Browse the repository at this point in the history
…ls into the step before saving the cache

#53
  • Loading branch information
monocongo committed Feb 1, 2020
1 parent 90771f3 commit 07abff2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
python3 -m venv venv
. venv/bin/activate
pip install -e .
pip install codecov
pip install coverage
pip install opencv-python
pip install pytest
pip install scikit-image
- save_cache:
paths:
Expand All @@ -32,11 +37,6 @@ jobs:
name: run tests
command: |
. venv/bin/activate
pip install codecov
pip install coverage
pip install opencv-python
pip install pytest
pip install scikit-image
coverage run -m pytest tests
codecov
Expand Down

0 comments on commit 07abff2

Please sign in to comment.