sync with commons

This commit is contained in:
chfw 2016-05-14 23:30:15 +01:00
parent 73bab70caa
commit 772e09ce69
1 changed files with 6 additions and 1 deletions

View File

@ -29,7 +29,12 @@ before_install:
- pip install https://github.com/pyexcel/pyexcel-io/archive/master.zip
- pip install https://github.com/pyexcel/pyexcel/archive/master.zip
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install ordereddict; fi
- if [[ -f rnd_requirements.txt ]]; then pip install -r rnd_requirements.txt; fi
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
mv min_requirements.txt requirements.txt ;
fi
- test ! -f rnd_requirements.txt || pip install --upgrade "setuptools" "pip==7.1"
- test ! -f rnd_requirements.txt || pip install --no-deps -r rnd_requirements.txt
- test ! -f rnd_requirements.txt || pip install -r rnd_requirements.txt ;
- pip install -r tests/requirements.txt
script:
make test