forked from clawpack/clawpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (34 loc) · 813 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
language: python
python:
- 2.7
before_install:
# Print NumPy version that is already installed by Travis CI:
- python -c "import numpy; print numpy.__version__"
- sudo apt-get update -qq
- sudo apt-get install -qq gfortran liblapack-pic
- pip install matplotlib
- pip install yolk
install:
- pip install -e .
- export PYTHONPATH=${PWD}:$PYTHONPATH
- export CLAW=${PWD}
- export FC=gfortran
before_script:
- cat /proc/cpuinfo
- gfortran -v
- echo "DEBUGGING --------------------"
- echo "CLAW="$CLAW
- echo "PYTHONPATH="$PYTHONPATH
- yolk -l
- echo "------------------------------"
script:
- cd $CLAW/pyclaw/examples
- nosetests
- cd $CLAW/classic
- nosetests
- cd $CLAW/amrclaw
- nosetests
- cd $CLAW/geoclaw
- nosetests
notifications:
email: false