diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2013-12-23 14:11:57 +0100 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-01-03 16:49:18 +0100 |
commit | b6cb0305a95d22a389a4127fda19c90629dfdffe (patch) | |
tree | a192187f4dffbcf1ac2a842c7215541cefa9c6fb /.travis.yml | |
parent | bb91617de316dd98d38e96a4df1e5de1bda3f805 (diff) | |
download | numpy-b6cb0305a95d22a389a4127fda19c90629dfdffe.tar.gz |
TST: add 32 bit travis tests
Implemented by setting up a chroot in the travis VM and moving all the
test logic, including bento build, to a single script.
This is still reasonable fast, about twice as slow as the normal tests.
When Travis updates to a newer OS it can be replaced by standard cross
compiling.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml index bba6fcb37..cfff49b42 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,8 @@ matrix: env: NPY_RELAXED_STRIDES_CHECKING=1 - python: 2.7 env: USE_BENTO=1 + - python: 2.7 + env: USE_CHROOT=1 ARCH=i386 DIST=saucy before_install: - uname -a - free -m @@ -31,24 +33,5 @@ before_install: - sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran - popd -install: - # We used to use 'setup.py install' here, but that has the terrible - # behaviour that if a copy of the package is already installed in - # the install location, then the new copy just gets dropped on top - # of it. Travis typically has a stable numpy release pre-installed, - # and if we don't remove it, then we can accidentally end up - # e.g. running old test modules that were in the stable release but - # have been removed from master. (See gh-2765, gh-2768.) Using 'pip - # install' also has the advantage that it tests that numpy is 'pip - # install' compatible, see e.g. gh-2766... - - if [ "${USE_BENTO}" == "1" ]; then source .bento_travisci.sh; else pip install .; fi script: - # We change directories to make sure that python won't find the copy - # of numpy in the source directory. - - mkdir empty - - cd empty - - INSTALLDIR=$(python -c "import os; import numpy; print(os.path.dirname(numpy.__file__))") - - export PYTHONWARNINGS=default - - python ../tools/test-installed-numpy.py --mode=full - # - coverage run --source=$INSTALLDIR --rcfile=../.coveragerc $(which python) ../tools/test-installed-numpy.py - # - coverage report --rcfile=../.coveragerc --show-missing + - ./tools/travis-test.sh |