Skip to content

Commit

Permalink
Mark the normalization tests xfailed so we can update the suite.
Browse files Browse the repository at this point in the history
Refs: #75
  • Loading branch information
Julian committed Mar 16, 2024
1 parent 320e852 commit 55a1ccf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions referencing/tests/test_referencing_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ def test_referencing_suite(test_path, subtests):
)
for test in loaded["tests"]:
with subtests.test(test=test):
if "normalization" in test_path.stem:
pytest.xfail("APIs need to change for proper URL support.")

resolver = registry.resolver(base_uri=test.get("base_uri", ""))

if test.get("error"):
Expand Down
2 changes: 1 addition & 1 deletion suite
Submodule suite updated 39 files
+5 −0 .github/release.yml
+2 −2 .github/workflows/ci.yml
+2 −2 .markdownlint.jsonc
+12 −19 .pre-commit-config.yaml
+13 −1 noxfile.py
+63 −0 pyproject.toml
+32 −0 test-schema.json
+1 −1 test_sanity.py
+1 −1 tests/json-schema-draft-03/keywords-additionalItems-boolean.json
+1 −1 tests/json-schema-draft-03/keywords-additionalProperties-boolean.json
+2 −2 tests/json-schema-draft-03/pointer-crossing-id-in-dependencies-object.json
+2 −2 tests/json-schema-draft-03/pointer-crossing-id-in-items-array.json
+2 −2 tests/json-schema-draft-03/pointer-crossing-id-in-items-object.json
+37 −0 tests/json-schema-draft-03/rfc3986-normalization-on-insertion.json
+37 −0 tests/json-schema-draft-03/rfc3986-normalization-on-retrieval.json
+35 −0 tests/json-schema-draft-04/invalid-anchor-with-pointer.json
+103 −0 tests/json-schema-draft-04/rfc3986-normalization-on-insertion.json
+103 −0 tests/json-schema-draft-04/rfc3986-normalization-on-retrieval.json
+64 −0 tests/json-schema-draft-04/tag-uris.json
+35 −0 tests/json-schema-draft-06/invalid-anchor-with-pointer.json
+103 −0 tests/json-schema-draft-06/rfc3986-normalization-on-insertion.json
+103 −0 tests/json-schema-draft-06/rfc3986-normalization-on-retrieval.json
+64 −0 tests/json-schema-draft-06/tag-uris.json
+35 −0 tests/json-schema-draft-07/invalid-anchor-with-pointer.json
+103 −0 tests/json-schema-draft-07/rfc3986-normalization-on-insertion.json
+103 −0 tests/json-schema-draft-07/rfc3986-normalization-on-retrieval.json
+64 −0 tests/json-schema-draft-07/tag-uris.json
+35 −0 tests/json-schema-draft-2019-09/invalid-anchor-with-pointer.json
+22 −0 tests/json-schema-draft-2019-09/keywords-definitions.json
+4 −0 tests/json-schema-draft-2019-09/multiple-lookup-external-absolute-uri-with-different-id-anchor.json
+103 −0 tests/json-schema-draft-2019-09/rfc3986-normalization-on-insertion.json
+103 −0 tests/json-schema-draft-2019-09/rfc3986-normalization-on-retrieval.json
+64 −0 tests/json-schema-draft-2019-09/tag-uris.json
+35 −0 tests/json-schema-draft-2020-12/invalid-anchor-with-pointer.json
+22 −0 tests/json-schema-draft-2020-12/keywords-definitions.json
+4 −0 tests/json-schema-draft-2020-12/multiple-lookup-external-absolute-uri-with-different-id-anchor.json
+103 −0 tests/json-schema-draft-2020-12/rfc3986-normalization-on-insertion.json
+103 −0 tests/json-schema-draft-2020-12/rfc3986-normalization-on-retrieval.json
+64 −0 tests/json-schema-draft-2020-12/tag-uris.json

0 comments on commit 55a1ccf

Please sign in to comment.