Skip to content

Commit 64a16f9

Browse files
authored
Merge pull request #158 from casework/build_case_1.3.0
2 parents 5fabffd + 9bb6457 commit 64a16f9

File tree

11 files changed

+22096
-37
lines changed

11 files changed

+22096
-37
lines changed

Makefile

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,23 @@ clean:
116116
|| $(MAKE) \
117117
--directory dependencies/CASE \
118118
clean
119-
@# Restore CASE validation output files that do not affect CASE build process.
119+
@# Restore CASE validation and catalog output files that do not affect CASE build process.
120120
@test ! -r dependencies/CASE/README.md \
121121
|| ( \
122122
cd dependencies/CASE \
123123
&& git checkout \
124124
-- \
125+
ontology \
126+
tests/examples \
127+
|| true \
128+
)
129+
@# Restore UCO catalog output files that do not affect CASE build process.
130+
@test ! -r dependencies/CASE/dependencies/UCO/README.md \
131+
|| ( \
132+
cd dependencies/CASE/dependencies/UCO \
133+
&& git checkout \
134+
-- \
135+
ontology \
125136
tests/examples \
126137
|| true \
127138
)

case_utils/case_validate/validate_utils.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,18 @@ def disable_tbox_review(graph: rdflib.Graph) -> None:
197197
"Disjointedness-AP-OP-shape",
198198
"Disjointedness-C-DT-shape",
199199
"Disjointedness-DP-OP-shape",
200-
"List-shape",
201200
"ObjectProperty-shacl-constraints-shape",
201+
"Sequence-shape",
202+
"disjointUnionOf-subjects-shape",
203+
"hasKey-subjects-shape",
204+
"intersectionOf-subjects-shape",
205+
"onProperties-subjects-shape",
206+
"oneOf-subjects-shape",
202207
"ontologyIRI-versionIRI-prerequisite-shape",
208+
"propertyChainAxiom-subjects-shape",
209+
"unionOf-subjects-shape",
203210
"versionIRI-nodeKind-shape",
211+
"withRestrictions-subjects-shape",
204212
}:
205213
n_tbox_shape = ns_uco_owl[tbox_shape_basename]
206214
graph.add((n_tbox_shape, NS_SH.deactivated, l_true))

0 commit comments

Comments
 (0)