Skip to content

Commit 8ea6d9e

Browse files
ref: mark this test as abstract
pytest 8.2 attempts to instantiate this test erroneously despite it being abstract
1 parent 21de85d commit 8ea6d9e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/sentry/incidents/action_handlers/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22

33
from sentry.incidents.logic import update_incident_status
44
from sentry.incidents.models.incident import Incident, IncidentStatus, IncidentStatusMethod
5+
from sentry.testutils.abstract import Abstract
56
from sentry.testutils.cases import TestCase
67

78

89
class FireTest(TestCase, abc.ABC):
10+
__test__ = Abstract(__module__, __qualname__)
11+
912
@abc.abstractmethod
1013
def run_test(self, incident: Incident, method: str, **kwargs):
1114
pass

0 commit comments

Comments
 (0)