8000 Mock spiceypy by dstansby · Pull Request #333 · heliopython/heliopy · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Jan 26, 2022. It is now read-only.

Mock spiceypy #333

Merged
merged 1 commit into from
Feb 5, 2018
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
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ deps-run: &deps-install
python3 -m venv venv
. venv/bin/activate
pip install --user --quiet -r requirements/docs.txt
pip install --user --quiet spiceypy --no-cache-di
pip install --user --quiet .

doc-run: &doc-build
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
html_sidebars = {'**': ['docsidebar.html']}

# Pretend these modules exits so readthedocs builds
MOCK_MODULES = []
MOCK_MODULES = ['spiceypy']
for mod_name in MOCK_MODULES:
sys.modules[mod_name] = mock.Mock()

Expand Down
1 change: 1 addition & 0 deletions requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
-r base.txt

matplotlib
mock
sphinx-gallery
sphinx
sphinx-bootstrap-theme
Expand Down
0