Skip to content
Closed
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
10 changes: 9 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ commands:
type: string
steps:
- checkout
- restore_cache:
key: optional-dependencies-{{ checksum "test_requirements/requirements_optional.txt" }}-{{ checksum parameters.py }}
- browser-tools/install-chrome
- browser-tools/install-chromedriver
- run:
Expand All @@ -46,6 +48,12 @@ commands:
cd js
npm ci
npm run build

- save_cache:
paths:
- venv
key: optional-dependencies-{{ checksum "test_requirements/requirements_optional.txt" }}-{{ checksum parameters.py }}

- run:
name: Test core
command: |
Expand All @@ -71,7 +79,7 @@ commands:
pytest tests/test_io
no_output_timeout: 20m
- run:
name: Test dependencdies not imported
name: Test dependencies not imported
command: |
. venv/bin/activate
python -m pytest -x test_init/test_dependencies_not_imported.py
Expand Down