forked from mwaskom/seaborn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
57 lines (46 loc) · 1.69 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
56
57
language: python
env:
- PYTHON=2.7 DEPS=latest BACKEND=agg DOCTESTS=true
- PYTHON=2.7 DEPS=pinned BACKEND=agg DOCTESTS=false
- PYTHON=2.7 DEPS=latest BACKEND=qtagg DOCTESTS=true
- PYTHON=3.4 DEPS=latest BACKEND=agg DOCTESTS=true
- PYTHON=3.5 DEPS=latest BACKEND=agg DOCTESTS=true
- PYTHON=3.6 DEPS=latest BACKEND=agg DOCTESTS=true
- PYTHON=3.6 DEPS=latest BACKEND=qtagg DOCTESTS=true
- PYTHON=3.6 DEPS=minimal BACKEND=agg DOCTESTS=false
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
install:
- conda update conda --yes
- conda create -n testenv --yes pip python=$PYTHON
- conda update conda --yes
- source activate testenv
- conda install --yes --file testing/deps_${DEPS}.txt
- pip install pep8==1.5 # Later versions get stricter...
- pip install https://github.com/dcramer/pyflakes/tarball/master
- pip install .
before_script:
- cp testing/matplotlibrc_${BACKEND} matplotlibrc
- if [ $BACKEND == "qtagg" ]; then
export DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
script:
- if [ ${PYTHON:0:1} == "2" ]; then
make lint;
fi
- if [ $DOCTESTS == 'true' ];
then nosetests --with-doctest;
else nosetests;
fi