Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add check if referenced feature does exist #40

Merged
merged 1 commit into from
Dec 19, 2023
Merged
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
1 change: 1 addition & 0 deletions builder/parse_features
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ def read_feature_files(feature_dir):
if attr not in [ "include", "exclude" ]:
continue
for ref in node_features[attr]:
assert os.path.isfile(f"{feature_dir}/{ref}/info.yaml"), f"feature {node} references feature {ref}, but {feature_dir}/{ref}/info.yaml does not exist"
feature_graph.add_edge(node, ref, attr=attr)
assert networkx.is_directed_acyclic_graph(feature_graph)
return feature_graph
Expand Down