Files
sphinx/.travis.yml
T

37 lines
753 B
YAML
Raw Normal View History

2012-11-03 10:50:50 +01:00
language: python
sudo: false
2016-02-13 10:10:14 -05:00
cache:
directories:
- $HOME/.cache/pip
2012-11-03 10:50:50 +01:00
python:
- "2.6"
2012-11-03 10:50:50 +01:00
- "2.7"
- "3.3"
- "3.4"
- "3.5"
2016-05-08 12:13:55 +03:00
- "3.5-dev"
- "pypy"
env:
2016-04-18 16:44:35 +09:00
global:
2016-07-14 21:10:32 +09:00
- TEST='-v --with-timer --timer-top-n 25'
2016-04-18 16:44:35 +09:00
matrix:
- DOCUTILS=0.11
- DOCUTILS=0.12
2016-06-11 15:06:07 +09:00
addons:
apt:
packages:
- graphviz
2016-06-11 15:16:13 +09:00
- texlive-latex-recommended
- texlive-latex-extra
- texlive-fonts-recommended
- texlive-fonts-extra
2012-11-03 10:50:50 +01:00
install:
2016-02-13 10:10:14 -05:00
- pip install -U pip
- pip install docutils==$DOCUTILS
- pip install -r test-reqs.txt
before_script:
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then flake8; fi
2015-11-10 04:09:05 +01:00
script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then make test-async; fi
- if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then make test; fi