Move coverage config to setup.cfg

This commit is contained in:
Simon Conseil
2022-01-14 18:33:22 +01:00
parent a9b69d3ad6
commit 3dcf22ef13
2 changed files with 10 additions and 7 deletions

View File

@@ -1,7 +0,0 @@
[report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:

View File

@@ -63,3 +63,13 @@ ignore = E203,W503,E731
[isort]
profile = black
known_third_party=blinker,click,jinja2,markdown,natsort,PIL,Pillow,pilkit
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
except KeyboardInterrupt
except ImportError