diff options
author | Michael Goerz <goerz@stanford.edu> | 2019-03-11 14:35:50 -0400 |
---|---|---|
committer | Michael Goerz <goerz@stanford.edu> | 2019-03-11 14:35:50 -0400 |
commit | 19a23142585f5fa5351f677acf2e70d036f52cdf (patch) | |
tree | 5342793df76eaffed2087fb0257a307872faeb64 | |
parent | 1f136215c18fc75eb9402ec7da083f9022703d71 (diff) | |
download | sphinx-git-19a23142585f5fa5351f677acf2e70d036f52cdf.tar.gz |
Install graphiz on Travis
This is required to generate inheritance diagrams (as there is now an
example inheritance diagram in the documentation of the extension
generating such diagrams)
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 5a49bf106..7bc822d70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,6 +37,7 @@ matrix: services: xvfb install: + - "sudo apt-get install graphviz" - if [ $IS_PYTHON = true ]; then pip install -U tox codecov; fi - if [ $IS_PYTHON = false ]; then npm install; fi |