forked from mwaskom/seaborn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
55 lines (49 loc) · 1.59 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
language: python
env:
- PYTHON=2.7 DEPS=modern
- PYTHON=2.7 DEPS=minimal
- PYTHON=3.4 DEPS=modern
#- PYTHON=3.5 DEPS=modern
install:
- conda update conda --yes
- conda create -n testenv --yes pip python=$PYTHON
- conda update conda --yes
- source activate testenv
- if [ ${PYTHON:0:1} == "2" ];
then conda install --yes imaging; else
pip install pillow;
fi
- conda install --yes --file testing/deps_${DEPS}_${PYTHON}.txt
- conda install ipython-notebook=2 --yes
#- pip install sphinx numpydoc sphinx_bootstrap_theme runipy
#- sudo apt-get install pandoc
- pip install pep8==1.5 # Later versions get stricter...
- pip install https://github.com/dcramer/pyflakes/tarball/master
- pip install .
- cp testing/matplotlibrc .
before_install:
- sudo apt-get update -yq
- sudo sh -c "echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections"
- sudo apt-get install msttcorefonts -qq
# http://conda.pydata.org/docs/travis.html#the-travis-yml-file
- wget https://repo.continuum.io/miniconda/Miniconda-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
before_script:
- if [ ${PYTHON:0:1} == "2" ]; then
make lint;
fi
#- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then
# cd doc;
# make notebooks html;
# cd ..;
# fi
script:
- if [ $DEPS == 'modern' ];
then nosetests --with-doctest;
else nosetests;
fi