From 15d456d048649ed8f3ff6ae1289ca1a8aa1f1eca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Mon, 27 Feb 2017 19:51:53 +0100 Subject: [PATCH] Testing docker in travis --- .travis.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3c7ee6d..c2d1014 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,13 @@ +sudo: required + +services: + - docker + language: python -python: - - "2.7" - - "3.4" - - "3.5" -install: "pip install -r requirements.txt" + +env: + - PYV=2.7 + - PYV=3.4 + - PYV=3.5 # run nosetests - Tests -script: nosetests +script: make test-$PYV