File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ install:
30
30
- conda update -q conda
31
31
# Useful for debugging any issues with conda
32
32
- conda info -a
33
- - conda create -q -n test-environment python=$PYTHON pandas=$PANDAS nose coverage setuptools html5lib lxml
33
+ - conda create -q -n test-environment python=$PYTHON pandas=$PANDAS nose coverage setuptools html5lib lxml pytest pytest-cov
34
34
- source activate test-environment
35
35
- pip install beautifulsoup4
36
36
- if [[ "$PYTHON" == "2.6" ]]; then
@@ -42,7 +42,7 @@ install:
42
42
43
43
script :
44
44
- export ENIGMA_API_KEY=$ENIGMA_API_KEY
45
- - nosetests -v --with-coverage --cover-package=pandas_datareader
45
+ - pytest -s --cov=pandas_datareader --cov-report xml:/tmp/cov-datareader.xml --junitxml=/tmp/datareader.xml
46
46
- flake8 --version
47
47
- flake8 --ignore E501 pandas_datareader
48
48
You can’t perform that action at this time.
0 commit comments