-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add expand_coverage_report option to add missing lines in a coverage report based on the previous line hit score * run black * adds .venv to .gitignore * changes expand-coverage-report argument to use - instead of _ * Revert "changes expand-coverage-report argument to use - instead of _" This reverts commit 381d2b4. * changes expand-coverage-report argument to use - instead of _ * documents --expand-coverage-report in README.rst * adds tests to expand-coverage-report * fix readme styling issues * Fix trailing white space on readme 287
- Loading branch information
1 parent
f8dba1b
commit e06ddc0
Showing
8 changed files
with
160 additions
and
2 deletions.
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
.idea | ||
venv | ||
27venv | ||
.venv | ||
|
||
# C extensions | ||
*.so | ||
|
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
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,24 @@ | ||
<?xml version="1.0" ?> | ||
<!DOCTYPE coverage | ||
SYSTEM 'http://cobertura.sourceforge.net/xml/coverage-03.dtd'> | ||
<coverage branch-rate="0" line-rate="0.8792" timestamp="1371471706873" version="3.6"> | ||
<packages> | ||
<package branch-rate="0" complexity="0" line-rate="0.9915" name=""> | ||
<classes> | ||
<class branch-rate="0" complexity="0" filename="test_src.txt" line-rate="0.9643" name="test_src.txt"> | ||
<methods/> | ||
<lines> | ||
<line hits="1" number="1"/> | ||
<line hits="0" number="2"/> | ||
<line hits="0" number="4"/> | ||
<line hits="1" number="5"/> | ||
<line hits="1" number="7"/> | ||
<line hits="0" number="8"/> | ||
<line hits="1" number="9"/> | ||
<line hits="0" number="10"/> | ||
</lines> | ||
</class> | ||
</classes> | ||
</package> | ||
</packages> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
------------- | ||
Diff Coverage | ||
Diff: origin/main...HEAD, staged and unstaged changes | ||
------------- | ||
test_src.txt (50.0%): Missing lines 2-4,8,10 | ||
------------- | ||
Total: 10 lines | ||
Missing: 5 lines | ||
Coverage: 50% | ||
------------- |
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