Move configuration of test-cases to config file, include list of service tests

This commit is contained in:
boukeversteegh
2020-05-25 21:11:33 +02:00
parent f25c66777a
commit e8a9960b73
3 changed files with 13 additions and 10 deletions

View File

@@ -0,0 +1,19 @@
# 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",
}
services = {
"googletypes_response",
"googletypes_response_embedded",
"service",
"import_service_input_message",
"import_service_input_message_dependency",
}