forked from pydata/pandas-datareader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
75 lines (70 loc) · 2.16 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
sudo: false
language: python
matrix:
fast_finish: true
include:
- dist: trusty
env:
- PYTHON=2.7 PANDAS=0.17.1
- dist: trusty
env:
- PYTHON=2.7 PANDAS=0.19.2
- dist: trusty
env:
- PYTHON=3.5 PANDAS=0.17.1
- dist: trusty
env:
- PYTHON=3.5 PANDAS=0.18.1
- dist: trusty
env:
- PYTHON=3.6 PANDAS=0.19.2
- dist: trusty
env:
- PYTHON=3.6 PANDAS=0.20.2
# 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
- 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=pandas_datareader --cov-report xml:/tmp/cov-datareader.xml --junitxml=/tmp/datareader.xml
- flake8 --version
- flake8 pandas_datareader
after_success:
- coveralls