diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000000..79ef4df528 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,11 @@ +[report] +exclude_lines = + pragma: no cover + def __repr__ + if self.debug: + if settings.DEBUG + raise AssertionError + raise NotImplementedError + if 0: + if __name__ == .__main__.: + pt_callbacks.py \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 8aea30d4ad..c7616dab25 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,16 +19,3 @@ max-line-length = 120 [flake8] ignore = E731,W504,F401,F841 max-line-length = 120 - -[report] -exclude_lines = - pragma: no cover - def __repr__ - if self.debug: - if settings.DEBUG - raise AssertionError - raise NotImplementedError - if 0: - if __name__ == .__main__.: - pt_callbacks.py -