Skip to content

Commit 3e14574

Browse files
authored
Merge pull request #667 from bashtage/add-codecov
MAINT: Add codecov and Python 3.7
2 parents 88363ea + 760cca2 commit 3e14574

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

.travis.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,30 @@ env:
1111
matrix:
1212
fast_finish: true
1313
include:
14-
- dist: trusty
14+
- dist: bionic
1515
env:
1616
- PYTHON=2.7 PANDAS=0.19.2
17-
- dist: trusty
17+
- dist: bionic
1818
env:
1919
- PYTHON=2.7 PANDAS=0.22
20-
- dist: trusty
20+
- dist: bionic
2121
env:
2222
- PYTHON=3.5 PANDAS=0.19.2
23-
- dist: trusty
23+
- dist: bionic
2424
env:
2525
- PYTHON=3.5 PANDAS=0.20.3
26-
- dist: trusty
26+
- dist: bionic
2727
env:
2828
- PYTHON=3.6 PANDAS=0.23.0
29-
- dist: trusty
29+
- dist: bionic
3030
env:
31-
- PYTHON=3.6 PANDAS=0.22 DOCBUILD=true
31+
- PYTHON=3.7 PANDAS=0.25 DOCBUILD=true
3232
# In allow failures
33-
- dist: trusty
33+
- dist: bionic
3434
env:
3535
- PYTHON=3.6 PANDAS="MASTER"
3636
allow_failures:
37-
- dist: trusty
37+
- dist: bionic
3838
env:
3939
- PYTHON=3.6 PANDAS="MASTER"
4040

@@ -70,8 +70,8 @@ install:
7070
conda install sphinx ipython matplotlib;
7171
pip install sphinx_rtd_theme doctr;
7272
fi
73-
- pip install beautifulsoup4
74-
- pip install coveralls --quiet
73+
- pip install pip --upgrade
74+
- pip install codecov coveralls beautifulsoup4
7575
- conda list
7676
- python setup.py install
7777

@@ -81,7 +81,7 @@ script:
8181
- flake8 --version
8282
- flake8 pandas_datareader
8383

84-
after_success:
84+
after_script:
8585
- |
8686
if [[ ${DOCBUILD} ]]; then
8787
cd docs
@@ -95,3 +95,4 @@ after_success:
9595
fi
9696
fi
9797
- coveralls
98+
- codecov

README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ Up to date remote data access for pandas, works for multiple versions of pandas.
1212
.. image:: https://coveralls.io/repos/pydata/pandas-datareader/badge.svg?branch=master
1313
:target: https://coveralls.io/r/pydata/pandas-datareader
1414

15+
.. image:: https://codecov.io/gh/pydata/pandas-datareader/branch/master/graph/badge.svg
16+
:target: https://codecov.io/gh/pydata/pandas-datareader
17+
1518
.. image:: https://readthedocs.org/projects/pandas-datareader/badge/?version=latest
1619
:target: https://pandas-datareader.readthedocs.io/en/latest/
1720

docs/source/whatsnew/v0.8.0.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Enhancements
2828
- Added Tiingo IEX Historical reader.
2929
- Added support for Alpha Vantage intraday time series prices (:issue: `631`)
3030
- Up to 15 years of historical prices from IEX with new platform, IEX Cloud
31+
- Added testing on Python 3.7 (:issue:`667`)
3132

3233
.. _whatsnew_080.api_breaking:
3334

0 commit comments

Comments
 (0)