File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -110,9 +110,12 @@ def do_entity_test(
110110 rocrate_relative_root_path : Optional [str ] = None ,
111111 metadata_only : bool = False ,
112112 metadata_dict : Optional [dict ] = None ,
113+ ** kwargs ,
113114):
114115 """
115- Shared function to test a RO-Crate entity
116+ Shared function to test a RO-Crate entity.
117+
118+ Additional keyword arguments (kwargs) are passed along to initialise ValidationSettings.
116119 """
117120 assert not (
118121 rocrate_entity_patch and rocrate_entity_mod_sparql
@@ -186,7 +189,8 @@ def do_entity_test(
186189 "rocrate_relative_root_path" : rocrate_relative_root_path ,
187190 "metadata_only" : metadata_only ,
188191 "metadata_dict" : metadata_dict ,
189- }
192+ },
193+ ** kwargs ,
190194 )
191195 )
192196 logger .debug ("Expected validation result: %s" , expected_validation_result )
You can’t perform that action at this time.
0 commit comments