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:
9
9
# maintainers to fix their pypy-dev package.
10
10
# - "pypy"
11
11
before_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'
16
16
# command to install dependencies
17
17
install :
18
18
- pip install -r requirements.txt
19
19
- python setup.py install
20
20
# 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
21
34
script : python test/test_load_module.py -v
You can’t perform that action at this time.
0 commit comments