Skip to content

Commit

Permalink
updated from template
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFriendlyCoder committed Sep 12, 2020
1 parent 2ce3dc9 commit fba95cb
Show file tree
Hide file tree
Showing 22 changed files with 1,640 additions and 3 deletions.
26 changes: 26 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[run]
# Include branch detection in coverage scan
branch = True

[report]
# fail the build if less than 0% of the code is covered by tests
fail_under = 90

# Regexes for lines to exclude from consideration
exclude_lines =
# standard pragma
pragma: no cover

# Don't complain about missing debug-only code:
def __repr__
if self\.debug
def 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__.:

11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ celerybeat.pid
.env
.venv
env/
venv/
venv?/
ENV/
env.bak/
venv.bak/
Expand All @@ -127,3 +127,12 @@ dmypy.json

# Pyre type checker
.pyre/

# project folders
.idea
.vscode

# Build Folders
htmlcov
htmldocs
docs/api

0 comments on commit fba95cb

Please sign in to comment.