forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (36 loc) · 833 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
python:
- 2.6
- 3.3
matrix:
include:
- python: 2.7
env: TESTMODE=full
before_install:
- uname -a
- free -m
- df -h
- ulimit -a
- mkdir builds
- pushd builds
- pip install nose
- pip install numpy
- pip install Cython
# mpmath for scipy.special tests
- pip install mpmath
# For Python 2.6 we also need argparse
- pip install argparse
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-dev libatlas-base-dev liblapack-dev gfortran
- python -V
- popd
script:
- python runtests.py -g -m $TESTMODE
env:
- TESTMODE=fast
notifications:
# Perhaps we should have status emails sent to the mailing list, but
# let's wait to see what people think before turning that on.
email: false