From 180e3de5959d8964ffe9d12e2eb1bceea01b5c8c Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Fri, 30 Dec 2016 16:30:47 +0200 Subject: [PATCH] - Added Travis CI. --- .travis.yml | 16 ++++++++++++++++ tox.ini | 8 ++++++++ 2 files changed, 24 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..75387b2 --- /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 24047e3..bccdba0 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 -- GitLab