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 07dd42f commit f5c74d5Copy full SHA for f5c74d5
tests/pytest/test_controller_documentation.py
@@ -145,13 +145,3 @@ def test_all_controllers_are_documented(checker: ControllerDocumentationChecker)
145
146
assert controller_classes, "No controller classes found"
147
assert documented_controllers, "No documented controllers found"
148
-
149
150
-def test_documented_classes_format(checker: ControllerDocumentationChecker):
151
- """Verify documented controller entries are valid Python identifiers."""
152
- documented_controllers = checker.get_documented_controllers()
153
154
- invalid_names = [name for name in documented_controllers if not name.isidentifier()]
155
156
- if invalid_names:
157
- pytest.fail(f"Invalid controller class names: {invalid_names}")
0 commit comments