Detect entry-point of tests automatically

This commit is contained in:
boukeversteegh
2020-06-10 22:42:38 +02:00
parent 1a95a7988e
commit fb54917f2c
5 changed files with 61 additions and 36 deletions

View File

@@ -1,6 +1,6 @@
# Test cases that are expected to fail, e.g. unimplemented features or bug-fixes.
# Remove from list when fixed.
tests = {
xfail = {
"import_circular_dependency",
"oneof_enum", # 63
"casing_message_field_uppercase", # 11
@@ -10,19 +10,6 @@ tests = {
"googletypes_value", # 9
}
# Defines where the main package for this test resides.
# Needed to test relative package imports.
packages = {
"import_root_package_from_child": ".child",
"import_parent_package_from_child": ".parent.child",
"import_root_package_from_nested_child": ".nested.child",
"import_cousin_package": ".test.subpackage",
"import_cousin_package_same_name": ".test.subpackage",
"repeatedmessage": ".repeatedmessage",
"service": ".service",
}
services = {
"googletypes_response",
"googletypes_response_embedded",