aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml18
1 files changed, 8 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index 3152686..cb495de 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,31 +4,24 @@ matrix:
include:
- os: linux
dist: trusty
- sudo: false
python: '2.6'
- os: linux
dist: trusty
- sudo: false
python: '2.7'
- os: linux
dist: trusty
- sudo: false
python: '3.2'
- os: linux
dist: trusty
- sudo: false
python: '3.3'
- os: linux
dist: trusty
- sudo: false
python: '3.4'
- os: linux
dist: trusty
- sudo: false
python: '3.5'
- os: linux
dist: trusty
- sudo: false
python: '3.6'
- os: linux
dist: xenial
@@ -36,15 +29,12 @@ matrix:
python: '3.7'
- os: linux
dist: trusty
- sudo: true
python: 'nightly'
- os: linux
dist: trusty
- sudo: false
python: 'pypy'
- os: linux
dist: trusty
- sudo: false
python: 'pypy3'
install:
- pip install codecov
@@ -52,6 +42,14 @@ install:
- pip install -e .
script:
- PYTHONPATH=.:$PYTHONPATH python tests/__main__.py
+ - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then (make -C docs html); fi
+ - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then (make -C docs html); fi
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then (make -C docs html); fi
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then (make -C docs html); fi
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then (make -C docs html); fi
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then (make -C docs html); fi
+ - if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]; then (make -C docs html); fi
+ - if [[ $TRAVIS_PYTHON_VERSION == 'nightly' ]]; then (make -C docs html); fi
after_success:
- PYTHONPATH=.:$PYTHONPATH coverage run --omit=*test* tests/__main__.py
- codecov