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 497a32a commit 8637c1fCopy full SHA for 8637c1f
jsonschema/tests/test_jsonschema_test_suite.py
@@ -174,13 +174,12 @@ def narrow_unicode_build(test): # pragma: no cover
174
175
176
TestDraft3LegacyTypeCheck = DRAFT3.to_unittest_testcase(
177
- DRAFT3.tests_of(name="type"),
178
- name="TestDraft3LegacyTypeCheck",
179
- skip=skip_tests_containing_descriptions(
180
- type={
181
- "any": "Interestingly this couldn't really be done w/the old API.",
182
- },
+ # Interestingly the any part couldn't really be done w/the old API.
+ (
+ (test for test in each if test.schema != {"type": "any"})
+ for each in DRAFT3.tests_of(name="type")
183
),
+ name="TestDraft3LegacyTypeCheck",
184
Validator=create(
185
meta_schema=Draft3Validator.META_SCHEMA,
186
validators=Draft3Validator.VALIDATORS,
0 commit comments