summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-12-09 11:11:00 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-12-09 11:11:00 +0100
commit406d7349a4732a185374822bf465f914e95d07c9 (patch)
tree52bc678e908327dc7be2a16487512ba757976df0
parent5385b57782d63cf86048762e9a1c9b0c1070930c (diff)
Add some debug traces to find why sphinx fails
-rw-r--r--.travis.yml3
-rwxr-xr-xsrc/python/doc/python3-sphinx-build.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 51bc26c3..1c490b69 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,7 +25,7 @@ matrix:
- CMAKE_EXAMPLE='OFF' CMAKE_TEST='OFF' CMAKE_UTILITIES='OFF' CMAKE_PYTHON='OFF' MAKE_TARGET='doxygen' CTEST_COMMAND='echo No tests for doxygen target'
- env:
# 5. Only Python, associated tests and sphinx documentation
- - CMAKE_EXAMPLE='OFF' CMAKE_TEST='OFF' CMAKE_UTILITIES='OFF' CMAKE_PYTHON='ON' MAKE_TARGET='all sphinx' CTEST_COMMAND='ctest --output-on-failure'
+ - CMAKE_EXAMPLE='OFF' CMAKE_TEST='OFF' CMAKE_UTILITIES='OFF' CMAKE_PYTHON='ON' MAKE_TARGET='all' CTEST_COMMAND='ctest --output-on-failure'
cache:
directories:
@@ -56,6 +56,7 @@ install:
- python3 -m pip install --upgrade pip setuptools wheel
- python3 -m pip install --user pytest Cython sphinx sphinxcontrib-bibtex sphinx-paramlinks matplotlib numpy scipy scikit-learn
- python3 -m pip install --user POT
+ - which python3
script:
- rm -rf build
diff --git a/src/python/doc/python3-sphinx-build.py b/src/python/doc/python3-sphinx-build.py
index 84d158cf..a8eede8a 100755
--- a/src/python/doc/python3-sphinx-build.py
+++ b/src/python/doc/python3-sphinx-build.py
@@ -5,6 +5,8 @@ Emulate sphinx-build for python3
"""
from sys import exit, argv
+print(sys.executable)
+import sphinx
from sphinx import main
if __name__ == '__main__':