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 86aec6c commit c398c6fCopy full SHA for c398c6f
referencing/tests/test_referencing_suite.py
@@ -28,7 +28,13 @@ def __str__(self):
28
DIALECT_IDS = json.loads(SUITE.joinpath("specifications.json").read_text())
29
30
31
-@pytest.mark.parametrize("test_path", SUITE.glob("*/**/*.json"))
+@pytest.mark.parametrize(
32
+ "test_path",
33
+ [
34
+ pytest.param(each, id=f"{each.parent.name}-{each.stem}")
35
+ for each in SUITE.glob("*/**/*.json")
36
+ ],
37
+)
38
def test_referencing_suite(test_path):
39
dialect_id = DIALECT_IDS[test_path.relative_to(SUITE).parts[0]]
40
specification = referencing.jsonschema.specification_with(dialect_id)
0 commit comments