Skip to content

Commit

Permalink
updated the CircleCI config file to fix indentation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
monocongo committed Feb 1, 2020
1 parent 6078087 commit 82eaaab
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,28 @@ jobs:
- v1-dependencies-{{ checksum "requirements.txt" }}
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
pip install -e .
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
pip install -e .
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}

- run:
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
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
# store artifacts (for example logs, binaries, etc)
# to be available in the web app or through the API
Expand Down

0 comments on commit 82eaaab

Please sign in to comment.