forked from lucastheis/cmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
29 lines (29 loc) · 1004 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
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get -qq install python-numpy python-scipy
install:
- cd code/liblbfgs
- ./autogen.sh
- ./configure --enable-sse2
- make CFLAGS="-fPIC"
- cd ../..
- python setup.py install
script:
- python code/cmt/python/tests/fvbn_test.py
- python code/cmt/python/tests/glm_test.py
- python code/cmt/python/tests/gsm_test.py
- python code/cmt/python/tests/mcbm_test.py
- python code/cmt/python/tests/mcgsm_test.py
- python code/cmt/python/tests/mixture_test.py
- python code/cmt/python/tests/mlr_test.py
- python code/cmt/python/tests/mogsm_test.py
- python code/cmt/python/tests/nonlinear_test.py
- python code/cmt/python/tests/preconditioner_test.py
- python code/cmt/python/tests/speed.py
- python code/cmt/python/tests/stm_test.py
- python code/cmt/python/tests/tools_test.py
- python code/cmt/python/tests/univariate_test.py