From 9f7541ee9b1df402b39abe9caeef627184e87bb5 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Fri, 27 Nov 2015 09:52:09 +0100 Subject: [PATCH] Move from tox to tox-travis in .travis.yml --- .travis.yml | 3 ++- tox.ini | 10 ++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8aeb38f..da9b979 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,9 @@ +sudo: false language: python python: - "2.7" - "3.4" install: - - pip install tox + - pip install tox-travis script: - tox diff --git a/tox.ini b/tox.ini index 3739dcd..05b0bc6 100644 --- a/tox.ini +++ b/tox.ini @@ -6,8 +6,10 @@ [tox] envlist = py27,py34 +[tox:travis] +2.7 = py27 +3.4 = py34 + [testenv] -commands = coverage run manage.py test -deps = - -rrequirements.txt - coverage \ No newline at end of file +commands = python manage.py test +deps = -rrequirements.txt