summaryrefslogtreecommitdiff
path: root/tools/travis-before-install.sh
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-08-27 16:38:08 +0300
committermattip <matti.picus@gmail.com>2019-08-27 19:16:22 +0300
commitbfe255f6b649af36a5fc976caaab1b5c4e78ffe7 (patch)
tree13ba10b80c365865278c158f0942ee3ef4d08469 /tools/travis-before-install.sh
parentd464d192ca996a107fc6dd5099f72227cf64a8ea (diff)
downloadnumpy-bfe255f6b649af36a5fc976caaab1b5c4e78ffe7.tar.gz
BUILD: move all test dependencies to ./test_requirements.txt
Diffstat (limited to 'tools/travis-before-install.sh')
-rwxr-xr-xtools/travis-before-install.sh8
1 files changed, 2 insertions, 6 deletions
diff --git a/tools/travis-before-install.sh b/tools/travis-before-install.sh
index 448273db0..072ad3bf6 100755
--- a/tools/travis-before-install.sh
+++ b/tools/travis-before-install.sh
@@ -30,12 +30,8 @@ fi
source venv/bin/activate
python -V
-if [ -n "$INSTALL_PICKLE5" ]; then
- pip install pickle5
-fi
-
+popd
pip install --upgrade pip setuptools
-pip install pytz cython pytest
+pip install -r test_requirements.txt
if [ -n "$USE_ASV" ]; then pip install asv; fi
-popd