diff --git a/.travis.yml b/.travis.yml index 363f449..53c8bff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,12 +3,18 @@ python: - 2.7 - 3.4 - 3.5 - - "nightly" - - "pypy" + - 3.6 + - pypy-5.4.1 install: - - python bootstrap.py - - bin/buildout + - pip install -U pip setuptools + - pip install -U coveralls coverage + - pip install -U -e ".[test]" script: - - bin/test -v1 + - coverage run -m zope.testrunner --test-path=src +after_success: + - coveralls +cache: pip +before_cache: + - rm -f $HOME/.cache/pip/log/debug.log notifications: email: false