Skip to content

Commit

Permalink
added missing parts
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Neagu committed Oct 11, 2023
1 parent c331963 commit 2221532
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/models-library/tests/test_service_settings_labels.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,11 @@ def test_resolving_some_service_labels_at_load_time(
labels = SimcoreServiceLabels.parse_obj(service_labels)

print("After", labels.json(indent=1))
formatted_json = service_meta.json(indent=1)
print("After", formatted_json)
for entry in vendor_environments:
print(entry)
assert entry not in formatted_json


def test_user_preferences_path_is_part_of_exiting_volume():
Expand All @@ -607,8 +612,3 @@ def test_user_preferences_path_is_part_of_exiting_volume():
}
with pytest.raises(ValidationError, match="user_preferences_path=/tmp/outputs"):
assert DynamicSidecarServiceLabels.parse_raw(json.dumps(labels_data))
formatted_json = service_meta.json(indent=1)
print("After", formatted_json)
for entry in vendor_environments:
print(entry)
assert entry not in formatted_json

0 comments on commit 2221532

Please sign in to comment.