Joakim Bech | 8e5c5b3 | 2018-10-25 08:18:32 +0200 | [diff] [blame] | 1 | sudo: false |
| 2 | |
| 3 | language: python |
| 4 | |
| 5 | python: |
| 6 | - "2.7" |
| 7 | - "3.6" |
| 8 | |
| 9 | before_install: |
| 10 | - sudo apt-get update |
Jens Wiklander | 06b9748 | 2021-05-10 15:30:32 +0200 | [diff] [blame] | 11 | - sudo apt-get install -y graphviz plantuml |
Joakim Bech | 8e5c5b3 | 2018-10-25 08:18:32 +0200 | [diff] [blame] | 12 | |
Jens Wiklander | 06b9748 | 2021-05-10 15:30:32 +0200 | [diff] [blame] | 13 | # TODO make this "pip install sphinx sphinx_rtd_theme sphinxcontrib-plantuml" |
| 14 | # once the fix in https://github.com/sphinx-contrib/plantuml/issues/56 has |
| 15 | # been included in a release. |
| 16 | install: |
| 17 | - pip install sphinx==1.8.5 sphinx_rtd_theme sphinxcontrib-plantuml Pillow |
Joakim Bech | 8e5c5b3 | 2018-10-25 08:18:32 +0200 | [diff] [blame] | 18 | |
| 19 | notifications: |
| 20 | - email: false |
| 21 | |
| 22 | script: |
Joakim Bech | 6af7262 | 2019-06-05 10:53:38 +0200 | [diff] [blame] | 23 | - SPHINXOPTS="-W --keep-going" make html |