Skip to content

[MRG] MAINT moving to modern way of building docs. #9402

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
MAINT Go look for linkchecker in the correct dir
  • Loading branch information
NelleV committed Oct 19, 2017
commit 77846ee731702924c75c8f8d69b8d3c82ae7c7fe
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,10 @@ jobs:
# Linkchecker only works with python 2.7 for the time being
- run:
name: linkchecker
command: ~/.local/bin/linkchecker build/html/index.html
command: |
export PATH="$HOME/miniconda/bin:$PATH"
source activate testenv
linkchecker build/html/index.html
working_directory: doc

- run: *doc-bundle
Expand Down