summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatthew Brett <matthew.brett@gmail.com>2015-04-29 14:52:27 -0700
committerMatthew Brett <matthew.brett@gmail.com>2015-04-30 13:19:15 -0700
commit83e0d1762ed96c5fa142c14546b1f188f8d68ec6 (patch)
tree9dc92ffb5949ff8e81b6d85b4441921d4571b0b7 /.travis.yml
parent38cb7aa3815748c1d719e918718b7726a18ed1fc (diff)
downloadnumpy-83e0d1762ed96c5fa142c14546b1f188f8d68ec6.tar.gz
TEST: add module to test installed scripts
Module tests whether we can run f2py and return correct version. Skip this test when running in-place (we don't install f2py in that case). Use our own virtualenvs in travis-ci to avoid picking up travis' numpy.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 0bf2ab447..dbfe426b8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,6 +28,10 @@ before_install:
- ulimit -a
- mkdir builds
- pushd builds
+ # Build into own virtualenv
+ # We therefore control our own environment, avoid travis' numpy
+ - virtualenv --python=python venv
+ - source venv/bin/activate
- pip install nose
# pip install coverage
- python -V