Skip to content

Commit

Permalink
Modernize .travis.yml
Browse files Browse the repository at this point in the history
All the Python 3 builds (except for PyPy3) were broken due to some weird
namespace stuff. See https://travis-ci.org/zopefoundation/zope.lifecycleevent/builds/180541228
  • Loading branch information
jamadden committed Dec 1, 2016
1 parent 93e60c0 commit d47d55a
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- pip install tox-travis
- pip install -U pip setuptools # need updated pip for caching
- pip install .[test]
script:
- tox
- python -m zope.lifecycleevent.tests
notifications:
email: false

cache: pip

0 comments on commit d47d55a

Please sign in to comment.