nodes,python: mark abstract node classes as ABCs

Fixes #11676
This commit is contained in:
Ran Benita
2023-12-06 18:27:17 +02:00
parent a536f49d91
commit 0ae02e2165
9 changed files with 39 additions and 12 deletions

View File

@@ -11,4 +11,5 @@ def pytest_collect_file(file_path, parent):
class MyItem(pytest.Item):
pass
def runtest(self):
raise NotImplementedError()