From 8b1f5a2ad080b1d367bcf0e490df327102460daf Mon Sep 17 00:00:00 2001 From: Jason Madden Date: Tue, 23 Jun 2020 11:28:16 -0500 Subject: [PATCH] Add .coveragerc --- .coveragerc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .coveragerc diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..b289576 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,18 @@ +[run] +source = nti.webhooks + + +[report] +# Coverage is run on Linux under cPython 2 and 3, +# exclude branches that are windows, pypy +# specific +exclude_lines = + pragma: no cover + def __repr__ + raise AssertionError + raise NotImplementedError + if __name__ == .__main__.: + if PYPY: + if sys.platform == 'win32': + if mswindows: + if is_windows: