summaryrefslogtreecommitdiffstats
path: root/.coveragerc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2020-11-03 06:14:02 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2020-11-03 06:14:02 +0000
commitb11507eda86bd49d4801df6c6f2b5700f15087d7 (patch)
treea387ba9ae22d2409e2eada620488a37f0bc36d2b /.coveragerc
parentAdding upstream version 1.5.5. (diff)
downloadidentify-b11507eda86bd49d4801df6c6f2b5700f15087d7.tar.xz
identify-b11507eda86bd49d4801df6c6f2b5700f15087d7.zip
Adding upstream version 1.5.7.upstream/1.5.7
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.coveragerc')
-rw-r--r--.coveragerc29
1 files changed, 0 insertions, 29 deletions
diff --git a/.coveragerc b/.coveragerc
deleted file mode 100644
index f995964..0000000
--- a/.coveragerc
+++ /dev/null
@@ -1,29 +0,0 @@
-[run]
-branch = True
-source =
- .
-omit =
- .tox/*
- /usr/*
- setup.py
-
-[report]
-show_missing = True
-
-exclude_lines =
- # Have to re-enable the standard pragma
- \#\s*pragma: no cover
-
- # Don't complain if tests don't hit defensive assertion code:
- ^\s*raise AssertionError\b
- ^\s*raise NotImplementedError\b
- ^\s*return NotImplemented\b
- ^\s*raise$
-
- # Don't complain if non-runnable code isn't run:
- ^if __name__ == ['"]__main__['"]:$
-
-[html]
-directory = coverage-html
-
-# vim:ft=dosini