forked from chengsoonong/mclass-sky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (25 loc) · 816 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:
- "3.5"
notifications:
email: false
before_install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a # for debugging
install:
- conda create -q -n testenv python=$TRAVIS_PYTHON_VERSION pip nose
- source activate testenv
- conda install numpy scipy pandas matplotlib scikit-learn cython
- conda install seaborn ephem ipython pytables joblib
- conda install -c omnia python-coveralls
- python setup.py develop
script:
- nosetests --with-coverage --cover-package=mclearn
after_success:
- coveralls