From 426578fa4c5ec991d361c60005c32ca88c85e505 Mon Sep 17 00:00:00 2001 From: Luke Campagnola Date: Wed, 26 Mar 2014 07:39:19 -0400 Subject: [PATCH] fix pytest install --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8818941e..59bc62dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,17 +41,17 @@ install: # Dependencies - if [ "${PYTHON}" == "2.7" ]; then travis_retry sudo apt-get -qq -y install python-numpy && - export PIP=pip; + export PIP=pip && sudo ${PIP} install pytest && - sudo ${PIP} install flake8; + sudo ${PIP} install flake8 && export PYTEST=py.test; else travis_retry sudo apt-get -qq -y install python3-numpy && curl http://python-distribute.org/distribute_setup.py | sudo python3 && curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | sudo python3 && - export PIP=pip3.2 + export PIP=pip3.2 && sudo ${PIP} install pytest && - sudo ${PIP} install flake8; + sudo ${PIP} install flake8 && export PYTEST=py.test-3.2; fi;