forked from PyCQA/flake8
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add coverage reporting and uploading
Upload our coverage data to codecov.io and aggregate it on test runs.
- Loading branch information
1 parent
d5a6cfc
commit b995d56
Showing
5 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[run] | ||
branch = True | ||
source = | ||
flake8 | ||
|
||
|
||
[paths] | ||
source = | ||
src/flake8 | ||
.tox/*/lib/python*/site-packages/flake8 | ||
.tox/pypy/site-packages/flake8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ dist | |
*.sw* | ||
*.log | ||
docs/build/html/* | ||
.coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
codecov: | ||
branch: master | ||
bot: null | ||
|
||
coverage: | ||
precision: 2 | ||
round: down | ||
range: "60...100" | ||
|
||
notify: | ||
irc: | ||
default: | ||
server: chat.freenode.net | ||
channel: '##python-code-quality' | ||
branches: master | ||
threshold: 2 | ||
message: null | ||
|
||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: null | ||
branches: null | ||
|
||
patch: | ||
default: | ||
target: auto | ||
branches: null | ||
|
||
changes: | ||
default: | ||
branches: null | ||
|
||
ignore: null | ||
fixes: | ||
- .tox | ||
|
||
comment: | ||
layout: "header, diff, changes, sunburst, uncovered, tree" | ||
branches: null | ||
behavior: default | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters