Add issue references to failing test cases

This commit is contained in:
boukeversteegh 2020-05-25 23:43:01 +02:00
parent 72de590651
commit 6d9e3fc580
2 changed files with 12 additions and 12 deletions

View File

@ -1,17 +1,17 @@
# Test cases that are expected to fail, e.g. unimplemented features or bug-fixes.
# Remove from list when fixed.
tests = {
"import_root_sibling",
"import_child_package_from_package",
"import_root_package_from_child",
"import_parent_package_from_child",
"import_circular_dependency",
"import_packages_same_name",
"oneof_enum",
"googletypes_service_returns_empty",
"casing_message_field_uppercase",
"namespace_keywords",
"namespace_builtin_types"
"import_root_sibling", # 61
"import_child_package_from_package", # 58
"import_root_package_from_child", # 60
"import_parent_package_from_child", # 59
"import_circular_dependency", # failing because of other bugs now
"import_packages_same_name", # 25
"oneof_enum", # 63
"googletypes_service_returns_empty", # 9
"casing_message_field_uppercase", # 11
"namespace_keywords", # 70
"namespace_builtin_types" # 53
}
services = {

View File

@ -7,7 +7,7 @@ from betterproto.tests.output_betterproto.import_service_input_message.import_se
)
@pytest.mark.xfail(reason="Request Input Messages are not imported for service")
@pytest.mark.xfail(reason="#68 Request Input Messages are not imported for service")
@pytest.mark.asyncio
async def test_service_correctly_imports_reference_message():
mock_response = RequestResponse(value=10)