Skip to content

Commit 6320610

Browse files
committed
Install test dependencies in Circle CI
1 parent 3e99bc9 commit 6320610

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
command: |
3636
python3 -m venv venv
3737
. venv/bin/activate
38-
pip install -e .
38+
pip install -e .[test]
3939
- save_cache:
4040
key: v1-dependency-cache-{{ checksum "setup.py" }}
4141
paths:
@@ -44,7 +44,7 @@ jobs:
4444
name: run tests
4545
command: |
4646
. venv/bin/activate
47-
pip install -e .
47+
pip install -e .[test]
4848
pip install pytest
4949
pytest
5050
test-python-install:
@@ -63,7 +63,7 @@ jobs:
6363
command: |
6464
python3 -m venv venv
6565
. venv/bin/activate
66-
pip install -e .
66+
pip install -e .[test]
6767
- save_cache:
6868
key: v1-dependency-cache-{{ checksum "setup.py" }}
6969
paths:
@@ -72,7 +72,7 @@ jobs:
7272
name: run tests
7373
command: |
7474
. venv/bin/activate
75-
pip install -e .
75+
pip install -e .[test]
7676
pip install pytest
7777
pytest
7878
deploy:
@@ -87,7 +87,7 @@ jobs:
8787
command: |
8888
python3 -m venv venv
8989
. venv/bin/activate
90-
pip install -e .
90+
pip install -e .[test]
9191
- save_cache:
9292
key: v1-dependency-cache-{{ checksum "setup.py" }}
9393
paths:

0 commit comments

Comments
 (0)