Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

Commit

Permalink
fix sphinx docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Apr 6, 2020
1 parent f901c24 commit 7d82baa
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions circle.yml
Expand Up @@ -45,8 +45,11 @@ references:
command: |
sudo apt-get install pandoc
sudo pip install -r docs/requirements.txt
# sphinx-apidoc -o ./docs/source ./imsegm ./tests/* --force --follow-links
cd docs; make html
# sphinx-apidoc -o ./docs/source ./imsegm **/test_* --force --follow-links
cd docs
make html --debug --jobs 2 SPHINXOPTS="-W"
make latexpdf
jobs:
Py3-Tests:
Expand All @@ -61,8 +64,6 @@ jobs:
- *build_project
# TESTING
- *test_coverage
# DOCUMENTATION
- *make_docs

# PASSING
- run:
Expand Down Expand Up @@ -106,6 +107,21 @@ jobs:
- image: circleci/python:2.7
steps: *steps_expt

Build-Docs:
docker:
- image: circleci/python:3.6
steps:
- checkout
- run:
name: TexLive
command: |
sudo apt-get update -qq
sudo apt-get install -y imagemagick ghostscript latexmk texlive texlive-latex-recommended texlive-fonts-recommended texlive-formats-extra
# INSTALLATION
- *install_pips
# DOCUMENTATION
- *make_docs

workflows:
version: 2
build:
Expand Down

0 comments on commit 7d82baa

Please sign in to comment.