summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2017-08-14 09:13:36 -0500
committerJason Madden <jamadden@gmail.com>2017-08-14 09:17:53 -0500
commit7cea1b2eaf656edd2da0c561a225ffeec26067f6 (patch)
treeb4af6a10e90ab8fdf37ee0b4d67ec2973a0aa924 /.travis.yml
parentb40f742baf274b154f2c3ddbadd8f7098ec4f260 (diff)
downloadzope-pagetemplate-universal_wheels.tar.gz
Add Python 3.6, drop Python 3.3universal_wheels
- Badges - Enable coverage reporting and coveralls - Less than 100%; see #9 - Enable universal wheels by using environment markers in the dependencies.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml21
1 files changed, 13 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 37c5317..f44d718 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
+ - 2.7
+ - 3.4
+ - 3.5
+ - 3.6
+ - pypy
+ - pypy3.5-5.8.0
install:
- - pip install tox-travis
+ - pip install -U pip setuptools
+ - pip install -U coverage coveralls
+ - pip install -U -e .[test]
script:
- - tox
+ - coverage run -m zope.testrunner --test-path=src
+after_success:
+ - coveralls
notifications:
email: false
+cache: pip