Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ jobs:

- store_artifacts:
path: doc/build/html
- store_test_results:
path: doc/build/test-results

docs-python38-min:
docker:
Expand All @@ -159,6 +161,8 @@ jobs:

- store_artifacts:
path: doc/build/html
- store_test_results:
path: doc/build/test-results

docs-python38:
docker:
Expand All @@ -179,6 +183,8 @@ jobs:

- store_artifacts:
path: doc/build/html
- store_test_results:
path: doc/build/test-results

- add_ssh_keys:
fingerprints:
Expand Down
2 changes: 2 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ def _check_dependencies():
'matplotlib_animations': True,
# 3.7 CI doc build should not use hidpi images during the testing phase
'image_srcset': [] if sys.version_info[:2] == (3, 7) else ["2x"],
'junit': ('../test-results/sphinx-gallery/junit.xml'
if 'CIRCLECI' in os.environ else ''),
}

plot_gallery = 'True'
Expand Down