File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed
Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,26 @@ python:
99 # maintainers to fix their pypy-dev package.
1010 # - "pypy"
1111before_install :
12- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; sudo apt-get update -q ; fi
13- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev; fi # gfortran
14- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
15- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python; fi
12+ - ' if [[ "$TRAVIS_OS_NAME" == "linux" ]]; sudo apt-get update -q ; fi'
13+ - ' if [[ "$TRAVIS_OS_NAME" == "linux" ]]; sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev; fi #gfortran'
14+ - ' if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi'
15+ - ' if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python; fi'
1616# command to install dependencies
1717install :
1818 - pip install -r requirements.txt
1919 - python setup.py install
2020# command to run tests
21+ matrix :
22+ include :
23+ - os : linux
24+ sudo : required
25+ python : 3.2
26+ env : TOXENV=py32
27+ - os : linux
28+ sudo : required
29+ python : 3.3
30+ env : TOXENV=py33
31+ - os : osx
32+ language : generic
33+ env : TOXENV=py3
2134script : python test/test_load_module.py -v
You can’t perform that action at this time.
0 commit comments