Skip to content

Commit

Permalink
test: fix test to extract metadata of unset value
Browse files Browse the repository at this point in the history
  • Loading branch information
makkus committed Jun 17, 2024
1 parent 1604193 commit 76b4ddf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_operation_types/test_extract_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ def test_extract_metadata_all_available_data(presseeded_data_store_minimal: Kiar
value = presseeded_data_store_minimal.data_registry.get_value(value_id)
ops = op_type.get_operations_for_data_type(value.value_schema.type)

if not value.is_set:
continue

for op in ops.values():

inputs = {"value": value}
result = op.run(kiara=presseeded_data_store_minimal, inputs=inputs)

Expand Down

0 comments on commit 76b4ddf

Please sign in to comment.