From 9882dbeb1a0a0cb1c7e521837132a91cfcc9e0f0 Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Tue, 30 Apr 2024 15:16:15 -0400 Subject: [PATCH] Add / ignore the new specification test suite property. --- jsonschema/tests/_suite.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jsonschema/tests/_suite.py b/jsonschema/tests/_suite.py index aeae4113..0da6503c 100644 --- a/jsonschema/tests/_suite.py +++ b/jsonschema/tests/_suite.py @@ -19,7 +19,7 @@ import referencing.jsonschema if TYPE_CHECKING: - from collections.abc import Iterable, Mapping + from collections.abc import Iterable, Mapping, Sequence import pyperf @@ -162,6 +162,7 @@ class _Case: schema: Mapping[str, Any] | bool tests: list[_Test] comment: str | None = None + specification: Sequence[dict[str, str]] = () @classmethod def from_dict(cls, data, remotes, **kwargs):