From f42c369300c856c2bbcc440cd68286bca7a93be8 Mon Sep 17 00:00:00 2001 From: Andy Dustman Date: Mon, 1 Oct 2012 13:43:00 -0400 Subject: [PATCH] Maybe a subshell will do the trick? --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 45b7b55..d35257b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,5 @@ python: - "2.5" - "2.6" - "2.7" -install: cd MySQLdb && python setup.py install -script: cd MySQLdb && nosetests +install: (cd MySQLdb && python setup.py install) +script: (cd MySQLdb && nosetests)