easy_install does not respect PYTHONUSERBASE

This commit is contained in:
Dane Springmeyer 2016-01-19 17:33:34 -08:00
parent 368ed8b8df
commit 493e49257f

View file

@ -63,7 +63,7 @@ install:
- psql -c 'create database template_postgis;' -U postgres;
- psql -c 'create extension postgis;' -d template_postgis -U postgres;
- if [[ ${COVERAGE} == true ]]; then
if [[ ! $(which pip) ]]; then easy_install --user pip; fi;
if [[ ! $(which pip) ]]; then easy_install --user pip && export PATH=/Users/travis/Library/Python/2.7/bin:${PATH}; fi;
pip install --user cpp-coveralls;
fi