From f05b659ec010c697e56096be3ce7dcd570395c43 Mon Sep 17 00:00:00 2001 From: adamantike Date: Sun, 24 Jan 2016 00:23:23 -0300 Subject: Added Travis CI integration --- .travis.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4846a97 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: python + +# Python 3.5 specified to make tox environment 'py35' work. +# See: https://github.com/travis-ci/travis-ci/issues/4794 +python: + - 3.5 + +# Environment changes have to be manually synced with 'tox.ini'. +# See: https://github.com/travis-ci/travis-ci/issues/3024 +env: + - TOXENV=py26 + - TOXENV=py27 + - TOXENV=py33 + - TOXENV=py34 + - TOXENV=py35 + - TOXENV=pypy + +install: + - pip install -r requirements.txt + +script: + - tox -- cgit v1.2.1