aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBernat Gabor <jokerjokerer@gmail.com>2017-12-06 23:50:52 +0000
committerBernat Gabor <jokerjokerer@gmail.com>2017-12-07 00:15:47 +0000
commit04254e3c4718b9b2ee96fa38a5d67c8104989592 (patch)
tree0985a6ce0cb0eba50815a1fd3463579758a095bc /.travis.yml
parent660a88ef71a3619d39d23fd2bd0be44a9c82256c (diff)
downloaddateutil-04254e3c4718b9b2ee96fa38a5d67c8104989592.tar.gz
add document generation to tox, and trigger automatically at CI (also check links in documentation to avoid having dangling pointers to the internet)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 8 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index e512d3b..3329ab0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,4 @@
+sudo: false
language: python
cache: pip
python:
@@ -9,9 +10,14 @@ python:
- "nightly"
- "pypy-5.4"
- "pypy3"
+env:
+ TOXENV=py
matrix:
fast_finish: true
+ include:
+ - python: 3.6
+ env: TOXENV=docs
allow_failures:
- python: "nightly"
@@ -20,9 +26,8 @@ install:
- ./ci_tools/retry.sh python updatezinfo.py
script:
- - tox -e py
+ - tox
after_success:
- - tox -e coverage,codecov
+ - if [[ $TOXENV == "py" ]]; then tox -e coverage,codecov; fi
-sudo: FALSE