diff --git a/backend/tests/flow/test_node_types.py b/backend/tests/flow/test_node_types.py index 1e303d6..771ecf0 100644 --- a/backend/tests/flow/test_node_types.py +++ b/backend/tests/flow/test_node_types.py @@ -125,6 +125,11 @@ def test_mqtt_routes_topics_by_port(): def test_every_offered_type_has_a_fixture(): - # A new node type without a fixture here would ship untested. - offered = {info.type for info in node_type_info() if info.type != "python"} + # A new built-in without a fixture here would ship untested. Connectors are + # separate packages and carry their own tests, so they are not this suite's. + offered = { + info.type + for info in node_type_info() + if info.type != "python" and not info.plugin + } assert offered == set(FIXTURES)