We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21de85d commit 8ea6d9eCopy full SHA for 8ea6d9e
tests/sentry/incidents/action_handlers/__init__.py
@@ -2,10 +2,13 @@
2
3
from sentry.incidents.logic import update_incident_status
4
from sentry.incidents.models.incident import Incident, IncidentStatus, IncidentStatusMethod
5
+from sentry.testutils.abstract import Abstract
6
from sentry.testutils.cases import TestCase
7
8
9
class FireTest(TestCase, abc.ABC):
10
+ __test__ = Abstract(__module__, __qualname__)
11
+
12
@abc.abstractmethod
13
def run_test(self, incident: Incident, method: str, **kwargs):
14
pass
0 commit comments