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 a760d2f commit 901c67cCopy full SHA for 901c67c
tests/core/models/test_shacl_schema.py
@@ -69,13 +69,13 @@ def test_dataset_shacl(tmpdir, runner, project, client):
69
}
70
)
71
72
- r, _, t = validate_graph(rdf, shacl_path=force_dataset_path)
+ r, _, t = validate_graph(rdf, shacl_path=str(force_dataset_path))
73
assert r is True, t
74
75
- r, _, t = validate_graph(rdf, shacl_path=force_datasetfile_path)
+ r, _, t = validate_graph(rdf, shacl_path=str(force_datasetfile_path))
76
77
78
- r, _, t = validate_graph(rdf, shacl_path=force_datasettag_path)
+ r, _, t = validate_graph(rdf, shacl_path=str(force_datasettag_path))
79
80
81
r, _, t = validate_graph(rdf)
@@ -101,7 +101,7 @@ def test_project_shacl(project, client):
101
'produceGeneralizedRdf': False
102
103
104
- r, _, t = validate_graph(rdf, shacl_path=path)
+ r, _, t = validate_graph(rdf, shacl_path=str(path))
105
106
107
0 commit comments