Skip to content

Commit 6fe6020

Browse files
committed
anotehr test
1 parent a66807e commit 6fe6020

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

.travis.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,26 @@ python:
99
# maintainers to fix their pypy-dev package.
1010
# - "pypy"
1111
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'
1616
# command to install dependencies
1717
install:
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
2134
script: python test/test_load_module.py -v

0 commit comments

Comments
 (0)