diff options
| author | Tres Seaver <tseaver@palladion.com> | 2016-09-14 16:02:00 -0400 |
|---|---|---|
| committer | Tres Seaver <tseaver@palladion.com> | 2016-09-14 16:02:00 -0400 |
| commit | 0fe956d7f3842ba4b2484da03d7b8872266ffe66 (patch) | |
| tree | 56c63a42e19e7a82e05361b574b1bd6f82f9e498 | |
| parent | 357914bf7b15081caff5970711ac043cce10bb2c (diff) | |
| download | zope-schema-test-docs-build-on-travis.tar.gz | |
Use 'tox' on Travis.test-docs-build-on-travis
Get 'coverage' and 'docs' tested there too.
| -rw-r--r-- | .travis.yml | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index 2428b54..7717889 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,20 @@ language: python sudo: false -python: - - 2.7 - - 3.3 - - 3.4 - - 3.5 - - pypy - - pypy3 +matrix: + include: + - python: 3.5 + env: TOXENV=py35 +env: + - TOXENV=py27 + - TOXENV=py33 + - TOXENV=py34 + - TOXENV=pypy + - TOXENV=pypy3 + - TOXENV=coverage + - TOXENV=docs install: - - pip install . + - pip install tox script: - - python setup.py test -q + - tox notifications: email: false |
