Skip to content
Snippets Groups Projects
Commit 314e17c7 authored by Egli Adrian (IT-SCI-API-PFI)'s avatar Egli Adrian (IT-SCI-API-PFI)
Browse files
parents b04d3bd7 3ff187b6
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ build_and_deploy_docs:
- apt install -y graphviz libgl1-mesa-glx xvfb xdg-utils
- apt install -y libcairo2-dev libjpeg-dev libgif-dev
script:
- pip install -r requirements_dev.txt
- pip install -r requirements_dev.txt -r requirements_continuous_integration.txt
- python setup.py install
- xvfb-run make docs
- aws s3 cp ./docs/_build/html/ s3://${BUCKET_NAME} --recursive
......
......@@ -2,7 +2,8 @@
#
# You can set these variables from the command line.
SPHINXOPTS =
# TODO fix sphinx warnings instead of suppressing them...
SPHINXOPTS = -Q
SPHINXBUILD = python -msphinx
SPHINXPROJ = flatland
SOURCEDIR = .
......
......@@ -24,7 +24,8 @@ subprocess.call(['sphinx-apidoc', '-o', 'docs/', 'flatland'])
os.environ["SPHINXPROJ"] = "flatland"
os.chdir('docs')
subprocess.call(['python', '-msphinx', '-M', 'clean', '.', '_build'])
subprocess.call(['python', '-msphinx', '-M', 'html', '.', '_build'])
subprocess.call(['python', '-mpydeps', '../flatland', '-o', '_build/html/flatland.svg'])
# TODO fix sphinx warnings instead of suppressing them...
subprocess.call(['python', '-msphinx', '-M', 'html', '.', '_build', '-Q'])
subprocess.call(['python', '-mpydeps', '../flatland', '-o', '_build/html/flatland.svg', '--no-config', '--noshow'])
browser('_build/html/index.html')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment