Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ defaults: &defaults
command: |
virtualenv ci
. ci/bin/activate
pip install six lxml flake8 tox pytest black
pip install six lxml flake8 tox pytest black .[test]
python setup.py develop
# Save dependency cache
- save_cache:
Expand Down Expand Up @@ -87,7 +87,7 @@ defaults: &defaults
name: Run all tests
command: |
. ci/bin/activate
pip install -e ".[prometheus]" ".[test]"
pip install -e .[prometheus,test]
python -m ipykernel install --user --name=notebooker_kernel
pip install -r ./notebooker/notebook_templates_example/notebook_requirements.txt
mkdir test-results
Expand Down