summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2017-07-07 11:09:12 +0200
committerRémi Flamary <remi.flamary@gmail.com>2017-07-07 11:09:12 +0200
commitd361e3f6b177506a54ce1e928a03d763ae59de98 (patch)
tree6767e2f689738c0b453e11a602d816e0f16f1ff8 /.travis.yml
parent6fe6020a336abf731defb75c3c908814429ad98c (diff)
add before install script
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml18
1 files changed, 3 insertions, 15 deletions
diff --git a/.travis.yml b/.travis.yml
index 9b9efa2..627e5cd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,6 @@
language: python
os:
- linux
- - osx
python:
- "2.7"
- "3.4"
@@ -9,10 +8,7 @@ python:
# maintainers to fix their pypy-dev package.
# - "pypy"
before_install:
- - 'if [[ "$TRAVIS_OS_NAME" == "linux" ]]; sudo apt-get update -q ; fi'
- - 'if [[ "$TRAVIS_OS_NAME" == "linux" ]]; sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev; fi #gfortran'
- - 'if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi'
- - 'if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python; fi'
+ - ./.travis/before_install.sh
# command to install dependencies
install:
- pip install -r requirements.txt
@@ -20,15 +16,7 @@ install:
# command to run tests
matrix:
include:
- - os: linux
- sudo: required
- python: 3.2
- env: TOXENV=py32
- - os: linux
- sudo: required
- python: 3.3
- env: TOXENV=py33
- os: osx
- language: generic
- env: TOXENV=py3
+ language: python
+
script: python test/test_load_module.py -v