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
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,14 @@ jobs:
python --version > /logs/python_version.txt
conda env export > /logs/environment.yml
pip install .[test] > /logs/install.txt
# Run flake8 check with source code (it doesn't work without it)
pytest -n 2 -m flake8
# Update/install Julia and R dependencies
esmvaltool install Julia > /logs/install_Julia.txt
esmvaltool install R > /logs/install_R.txt
# Remove source to test installed software
rm -r esmvaltool
pytest -n 2
pytest -n 2 -m 'not flake8'
- store_artifacts:
path: /logs
- store_artifacts:
Expand Down