forked from pydata/pandas-datareader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
97 lines (90 loc) · 2.83 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
sudo: false
language: python
env:
global:
# Doctr deploy key for pydata/pandas-datareader
- secure: "iGbOAbBSV5y0TKDh2CifRSk6OpLA9GbEEL/hscHFLSDDUCWcdfvYXda3SWJFWyoQ5QUxSigXWd+ukr4u92d7lmB7m3TWj6BAMNuRpatTgnejLNwLvNeYdvLAxPvx39Cq85frd1Rx1beBLn3h/4wm4Ah+dR5W9NH8+x3OuZMH3Eo="
matrix:
fast_finish: true
include:
- dist: trusty
env:
- PYTHON=2.7 PANDAS=0.19.2
- dist: trusty
env:
- PYTHON=2.7 PANDAS=0.22
- dist: trusty
env:
- PYTHON=3.5 PANDAS=0.19.2
- dist: trusty
env:
- PYTHON=3.5 PANDAS=0.20.3
- dist: trusty
env:
- PYTHON=3.6 PANDAS=0.23.0
- dist: trusty
env:
- PYTHON=3.6 PANDAS=0.22 DOCBUILD=true
# In allow failures
- dist: trusty
env:
- PYTHON=3.6 PANDAS="MASTER"
allow_failures:
- dist: trusty
env:
- PYTHON=3.6 PANDAS="MASTER"
install:
- pip install -qq flake8
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date. We do this
# conditionally because it saves us some downloading if the version is
# the same.
- if [[ "$PYTHON" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- 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 config --add channels pandas
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment python=$PYTHON coverage setuptools html5lib lxml pytest pytest-cov wrapt
- source activate test-environment
- if [[ "$PANDAS" == "MASTER" ]]; then
conda install numpy pytz python-dateutil;
PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com";
pip install --pre --upgrade --timeout=60 -f $PRE_WHEELS pandas;
else
conda install pandas=$PANDAS;
fi
- if [[ $DOCBUILD ]]; then
conda install sphinx ipython matplotlib;
pip install sphinx_rtd_theme doctr;
fi
- pip install beautifulsoup4
- pip install coveralls --quiet
- conda list
- python setup.py install
script:
- export ENIGMA_API_KEY=$ENIGMA_API_KEY
- pytest -s -r xX --cov-config .coveragerc --cov=pandas_datareader --cov-report xml:/tmp/cov-datareader.xml --junitxml=/tmp/datareader.xml
- flake8 --version
- flake8 pandas_datareader
after_success:
- |
if [[ ${DOCBUILD} ]]; then
cd docs
make html && make html
cd ..
doctr deploy devel --build-tags
if [[ -z ${TRAVIS_TAG} ]]; then
echo "Not a tagged build."
else
doctr deploy stable --build-tags
fi
fi
- coveralls