diff --git a/pyproject.toml b/pyproject.toml index 51544d839..9581f0987 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,6 +39,14 @@ sphinx-rtd-theme = "^2.0.0" spectrum = "^0.8.1" +[tool.coverage.report] +exclude_also = [ + "def __repr__", + "if __debug__:", + "raise NotImplementedError", + "if __name__ == .__main__.:", + "@abstractmethod", +] [build-system] diff --git a/tests/integration/ts_anomaly_detection/__init__.py b/tests/integration/ts_anomaly_detection/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/integration/test_anomaly_detection.py b/tests/integration/ts_anomaly_detection/test_anomaly_detection.py similarity index 100% rename from tests/integration/test_anomaly_detection.py rename to tests/integration/ts_anomaly_detection/test_anomaly_detection.py