-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from dvp2015/logfunction_test
Likefunctions fix and test
- Loading branch information
Showing
24 changed files
with
1,409 additions
and
548 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[run] | ||
|
||
include = numjuggler/* | ||
|
||
omit = | ||
*_tab.py | ||
|
||
# branch = True | ||
|
||
|
||
|
||
[report] | ||
|
||
# Regexes for lines to exclude from consideration | ||
exclude_lines = | ||
# Have to re-enable the standard pragma | ||
pragma: no cover | ||
|
||
# Don't complain about missing debug-only code: | ||
def __repr__ | ||
if self\.debug | ||
|
||
# Don't complain if tests don't hit defensive assertion code: | ||
raise AssertionError | ||
raise NotImplementedError | ||
|
||
# Don't complain if non-runnable code isn't run: | ||
if 0: | ||
if __name__ == .__main__.: | ||
|
||
ignore_errors = True | ||
sort = Cover | ||
|
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,15 @@ | ||
# | ||
# Special handling for binary files | ||
# See https://git-scm.com/book/tr/v2/Customizing-Git-Git-Attributes | ||
# Install doc2txt https://sourceforge.net/projects/docx2txt/?source=navbar | ||
# | ||
*.npz binary | ||
*.xz binary | ||
*.zip binary | ||
*.bz2 binary | ||
*.gz binary | ||
*.npy binary | ||
*.docx binary | ||
#*.docx binary diff=word | ||
*.png binary | ||
#*.png diff=exif |
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 |
---|---|---|
@@ -1,7 +1,26 @@ | ||
# Python setup folders | ||
build/ | ||
*.egg-info | ||
|
||
# Byte-compiled | ||
*.pyc | ||
|
||
# Editor | ||
.ropeproject/ | ||
|
||
/.gtm/ | ||
|
||
# Environments | ||
.cache/ | ||
.idea/ | ||
|
||
# Dev.scripts results | ||
numjuggler.dot | ||
numjuggler.pdf | ||
numjuggler.sfood1 | ||
numjuggler.sfood2 | ||
|
||
# Pytest and Coverage | ||
*.log | ||
.coverage | ||
htmlcov/ |
Oops, something went wrong.