From 285ca1171bab025c1cf89f0d493e5f95ab332473 Mon Sep 17 00:00:00 2001 From: Thomas Rubini <74205383+ThomasRubini@users.noreply.github.com> Date: Thu, 5 Jan 2023 15:34:20 +0100 Subject: [PATCH] do not collect exception class --- tests/test_api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_api.py b/tests/test_api.py index 6500e37..fe47ab8 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -5,6 +5,7 @@ from truthseeker import app test_app = app.test_client() class TestException(Exception): + __test__ = False def __init__(self, message): self.message = message