From 3077bae3c3042f4634900b19055758081049c82c Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Sat, 12 Nov 2016 17:49:03 -0500 Subject: Wire up Travis. --- .travis.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9b3e9f2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,26 @@ +# Wire up travis +language: python +sudo: false + +matrix: + include: + - python: 3.5 + env: TOXENV=py35 + +env: + - TOXENV=py27 + - TOXENV=py33 + - TOXENV=py34 + - TOXENV=pypy + - TOXENV=pypy3 + - TOXENV=cover + +install: + - travis_retry pip install tox + +script: + - travis_retry tox + +notifications: + email: + - repoze-checkins@lists.repoze.org -- cgit v1.2.1