Fix builds on travis-ci (2nd attempt)

The pip version will be upgraded before creating the test-envs
This commit is contained in:
Vineet Naik 2016-02-14 19:33:05 +05:30
parent 4e012fd976
commit 8d7f85f3e4
1 changed files with 3 additions and 3 deletions

View File

@ -8,10 +8,10 @@ python:
- "3.2"
- "3.3"
- "3.4"
before_install: make test-env
install:
before_install:
- pip install pip>=8.0.2
- pip install .
- make test-env
install: pip install .
script: py.test -v
after_script: make clean clean-env
sudo: false