Skip to content

Commit 11ee7df

Browse files
authored
Merge pull request #3 from man-group/build-repair
Fix for test deps not installing
2 parents e3b7891 + 6aa6838 commit 11ee7df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ defaults: &defaults
5959
command: |
6060
virtualenv ci
6161
. ci/bin/activate
62-
pip install six lxml flake8 tox pytest black
62+
pip install six lxml flake8 tox pytest black .[test]
6363
python setup.py develop
6464
# Save dependency cache
6565
- save_cache:
@@ -87,7 +87,7 @@ defaults: &defaults
8787
name: Run all tests
8888
command: |
8989
. ci/bin/activate
90-
pip install -e ".[prometheus]" ".[test]"
90+
pip install -e .[prometheus,test]
9191
python -m ipykernel install --user --name=notebooker_kernel
9292
pip install -r ./notebooker/notebook_templates_example/notebook_requirements.txt
9393
mkdir test-results

0 commit comments

Comments
 (0)