forked from ratnerd0/odin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (35 loc) · 1.43 KB
/
.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
language: python
python:
- 2.7
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq libatlas3gf-base libatlas-dev
- pip install --use-mirrors -qq numexpr
- pip install --use-mirrors -qq pyparsing
- sudo apt-get update
- sudo apt-get install -qq python-numpy
- sudo apt-get install -qq python-scipy
- sudo apt-get install -qq python-matplotlib
- sudo apt-get install -qq libhdf5-serial-dev
- sudo apt-get install -qq libfftw3-dev libfftw3-doc
- pip install --use-mirrors -qq nose
- pip install --use-mirrors -qq cython
- pip install --use-mirrors -qq tables
- pip install --use-mirrors -qq pyyaml
- pip install --use-mirrors -qq mdtraj
- pip install --use-mirrors -qq theano
- pip install --use-mirrors -qq ipython
- pip install --use-mirrors -qq git+git://github.com/rmcgibbo/simtk.unit
- git clone --depth 5 https://github.com/hgomersall/pyFFTW.git; cd pyFFTW; python setup.py build_ext --inplace ; sudo python setup.py install ; cd ..
- svn co https://svn.code.sf.net/p/fable/code/fabio/branches/v0.1.2 fabio; cd fabio; python setup.py install; cd ..
- git clone --depth 5 https://github.com/pymc-devs/pymc.git; cd pymc; sudo python setup.py install ; cd ..
install:
- python setup.py install
env:
- TESTFOLDER=test
- TESTFOLDER=test/scatter
- TESTFOLDER=test/xray/test_xray.py
- TESTFOLDER=test/xray/test_xray2.py
- TESTFOLDER=test/xray/more
script: nosetests -v "$TESTFOLDER"