Skip to content

Commit

Permalink
Install [test] dependencies in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Nov 30, 2019
1 parent a81d980 commit dcb25fe
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 @@ -35,7 +35,7 @@ jobs:
command: |
python3 -m venv venv
. venv/bin/activate
pip install -e .
pip install -e .[test]
- save_cache:
key: v1-dependency-cache-{{ checksum "setup.py" }}
paths:
Expand All @@ -44,7 +44,7 @@ jobs:
name: run tests
command: |
. venv/bin/activate
pip install -e .
pip install -e .[test]
pip install pytest
pytest
test-python-install:
Expand All @@ -63,7 +63,7 @@ jobs:
command: |
python3 -m venv venv
. venv/bin/activate
pip install -e .
pip install -e .[test]
- save_cache:
key: v1-dependency-cache-{{ checksum "setup.py" }}
paths:
Expand All @@ -72,7 +72,7 @@ jobs:
name: run tests
command: |
. venv/bin/activate
pip install -e .
pip install -e .[test]
pip install pytest
pytest
deploy:
Expand All @@ -87,7 +87,7 @@ jobs:
command: |
python3 -m venv venv
. venv/bin/activate
pip install -e .
pip install -e .[test]
- save_cache:
key: v1-dependency-cache-{{ checksum "setup.py" }}
paths:
Expand Down

0 comments on commit dcb25fe

Please sign in to comment.