forked from NMGRL/pychron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.orig.yml
42 lines (38 loc) · 1.38 KB
/
.travis.orig.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
language: python
notifications:
email: False
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
virtualenv:
system_site_packages: true
before_install:
# - sudo apt-get install xvfb
#- sudo apt-get --no-install-recommends install python-pandas>=0.12.0
#- sudo apt-get --no-install-recommends install python-pandas-lib
# - pip install patsy
install:
#- sudo apt-get install python-pyside
- pip install cython
- sudo apt-get install python-numpy python-scipy
# - sudo apt-get install swig
# - pip install PIL --allow-external PIL --allow-unverified PIL
# - pip install pyparsing
- pip install git+http://github.com/enthought/traits.git#egg=traits
#- pip install git+http://github.com/enthought/pyface.git#egg=pyface
- pip install git+http://github.com/enthought/traitsui.git#egg=traitsui
# - pip install git+http://github.com/enthought/enable.git#egg=enable
# - pip install git+http://github.com/enthought/chaco.git#egg=chaco
#statsmodels dependencies
#install pandas from source
- pip install patsy
- git clone git://github.com/pydata/pandas.git
- cd pandas
- git checkout v0.12.0
- python setup.py install
- cd ..
- pip install -r requirements.txt
#- python setup.py develop
# command to run tests, e.g. python setup.py test
#script: DISPLAY=localhost:1.0 xvfb-run python setup.py test
script: python setup.py test