diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..75387b2204c6b68eb1fb9c99e7a2e3d97bd6bc71 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +--- +language: python +python: ["2.7", "3.2", "3.3", "3.4", "3.5"] +dist: trusty +sudo: false +cache: + - pip + +install: + - pip install tox-travis + +script: + - tox + +notifications: + email: false diff --git a/tox.ini b/tox.ini index 24047e3511633ac41fc210e05b791d52a160f1d6..bccdba005ef0efcc7a9d1d002867a6845d2782c2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,14 @@ [tox] envlist = py{2,3} +[travis] +python = + 2.7: py2 + 3.2: py3 + 3.3: py3 + 3.4: py3 + 3.5: py3 + [testenv] basepython = py2: python2