Skip to content

Commit b904642

Browse files
authored
Merge pull request #517 from grlee77/coverage_updates
updating code coverage files
2 parents 709bf4c + 0d2f196 commit b904642

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.coveragerc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ omit =
66
*/version.py
77
*/pywt/tests/*
88
*/pywt/_doc_utils.py*
9+
*/pywt/_pytesttester.py*
10+
*/pywt/_pytest.py*
911
*/pywt/data/create_dat.py
1012
*.pxd
1113
stringsource

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ script:
9494
CFLAGS="--coverage" python setup.py build --build-lib build/lib/ --build-temp build/tmp/
9595
CFLAGS="--coverage" pip install -e . -v
9696
pushd demo
97-
pytest --pyargs pywt --cov=pywt
97+
pytest --pyargs pywt --cov=pywt --cov-config=../.coveragerc
98+
cp .coverage ..
9899
popd
99100
fi
100101

codecov.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
ignore:
22
- "_doc_utils.py" # utilities only used for creating documentation figures
3+
- "_pytest*.py" # pytest test utilities
4+
- "create_dat.py" # raw data creation script
5+
- "version.py" # generated by setup.py
6+

0 commit comments

Comments
 (0)