-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
.travis.yml
42 lines (42 loc) · 911 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
37
38
39
40
41
42
# After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
sudo: false
matrix:
include:
- python: 3.7
env:
- TESTMODE=full
- COVERAGE=--coverage
- python: 3.6
env:
- TESTMODE=fast
addons:
apt:
packages:
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- ccache
cache:
directories:
- $HOME/.ccache
before_install:
- export PATH=/usr/lib/ccache:$PATH
- uname -a
- free -m
- df -h
- ulimit -a
- mkdir builds
- pushd builds
- travis_retry pip install numpy
- travis_retry pip install nose argparse
- travis_retry pip install coverage
- python -V
- popd
script:
- python $OPTIMIZE runtests.py -g -m $TESTMODE $COVERAGE
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