diff --git a/test_oss_cloud_api_compatibility.py b/test_oss_cloud_api_compatibility.py index a69c033..84c751e 100644 --- a/test_oss_cloud_api_compatibility.py +++ b/test_oss_cloud_api_compatibility.py @@ -303,6 +303,10 @@ def extract_types(d): if oss_name in KNOWN_ALIASES[endpoint][method]: oss_name = KNOWN_ALIASES[endpoint][method][oss_name] + # Note, this print is here intentionally to make it easier to understand test + # failures when looping over fields + print("parameter name:", oss_name) + assert oss_name in cloud_props[1] ( cloud_name, @@ -382,6 +386,10 @@ def preprocess_pydantic_v1_type(schema): ] for field_name, props in items: + # Note, this print is here intentionally to make it easier to understand + # test failures when looping over fields + print("field name:", field_name) + assert field_name in cloud_props oss_options = set()