Skip to content

Commit 9331a88

Browse files
authored
Merge pull request #162 from bashtage/add-coveragerc
TST: Update travis to correct coveragerc
2 parents 569825a + 0c4e3f4 commit 9331a88

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
File renamed without changes.

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ install:
8787
- source activate arch-test
8888
- pip install flake8 nbconvert nbformat pytest coverage coveralls pytest-cov codecov pytest-xdist
8989
- if [ ${STATSMODELS_MASTER} = true ]; then sh ./ci/statsmodels-master.sh; fi;
90+
- export SRCDIR=${PWD}
9091
- python setup.py develop
9192
# Show versions
9293
- conda list
@@ -95,10 +96,10 @@ script:
9596
# flake testing
9697
- flake8 arch
9798
# Main test
98-
- py.test -n 2 -s --cov=arch --pyargs arch
99+
- py.test -n 2 -s --cov-config .coveragerc --cov=arch --pyargs arch
99100
# performance
100101
- python ci/performance.py
101102

102103
after_success:
103-
- if [ ${COVERAGE} = true ]; then coveralls --rcfile=${SRCDIR}/.travis_coveragerc; fi
104+
- if [ ${COVERAGE} = true ]; then coveralls --rcfile=${SRCDIR}/.coveragerc; fi
104105
- if [ ${COVERAGE} = true ]; then codecov; fi

0 commit comments

Comments
 (0)