Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,23 @@ clean:
|| $(MAKE) \
--directory dependencies/CASE \
clean
@# Restore CASE validation output files that do not affect CASE build process.
@# Restore CASE validation and catalog output files that do not affect CASE build process.
@test ! -r dependencies/CASE/README.md \
|| ( \
cd dependencies/CASE \
&& git checkout \
-- \
ontology \
tests/examples \
|| true \
)
@# Restore UCO catalog output files that do not affect CASE build process.
@test ! -r dependencies/CASE/dependencies/UCO/README.md \
|| ( \
cd dependencies/CASE/dependencies/UCO \
&& git checkout \
-- \
ontology \
tests/examples \
|| true \
)
Expand Down
10 changes: 9 additions & 1 deletion case_utils/case_validate/validate_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,18 @@ def disable_tbox_review(graph: rdflib.Graph) -> None:
"Disjointedness-AP-OP-shape",
"Disjointedness-C-DT-shape",
"Disjointedness-DP-OP-shape",
"List-shape",
"ObjectProperty-shacl-constraints-shape",
"Sequence-shape",
"disjointUnionOf-subjects-shape",
"hasKey-subjects-shape",
"intersectionOf-subjects-shape",
"onProperties-subjects-shape",
"oneOf-subjects-shape",
"ontologyIRI-versionIRI-prerequisite-shape",
"propertyChainAxiom-subjects-shape",
"unionOf-subjects-shape",
"versionIRI-nodeKind-shape",
"withRestrictions-subjects-shape",
}:
n_tbox_shape = ns_uco_owl[tbox_shape_basename]
graph.add((n_tbox_shape, NS_SH.deactivated, l_true))
Loading