Skip to content

Commit 889c8b6

Browse files
committed
add .coveragerc
1 parent 847d0c1 commit 889c8b6

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.codecov.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
ignore:
22
- "setup.py"
3-
- ".eggs"
4-
- "tests/w3c.py"
3+
- ".eggs/*"
4+
- ".tests/w3c.py"

.coverage

-1
This file was deleted.

.coveragerc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[run]
2+
omit = ./eggs*
3+
tests/w3c.py
4+
setup.py
5+
tests/*

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
.coverage
12
.eggs/
23
.cache/
34
build/
5+
coverage.xml
46
dist/
57
pymaps.egg-info/
68
#pygmaps.py

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
test=pytest
33

44
[tool:pytest]
5-
addopts = -v --cov=./
5+
addopts = -v --cov-config .coveragerc --cov=./

0 commit comments

Comments
 (0)