forked from obspy/obspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
13 lines (13 loc) · 809 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
# We pretend to be erlang because we can't use the python support in travis-ci
# see also: https://groups.google.com/forum/#!msg/travis-ci/uJgu35XKdmI/CctnUkYnEJEJ
language: erlang
before_install:
- lsb_release -a # get info on the operating system
- sudo apt-get install -qq gfortran python python-dev python-setuptools python-numpy python-scipy python-matplotlib python-suds python-lxml python-sqlalchemy 1> /dev/null # install dependencies
- DEPTH=300; while [ "$(git describe 2> /dev/null)" == "" ]; do DEPTH=$(($DEPTH+200)); git fetch origin --depth=$DEPTH --quiet; done # continue fetching more older commits until git describe is able to reach the last tagged version
install:
- sudo python setup.py -q install
script:
- sudo obspy-runtests -n travis-ci -r
notifications:
email: false