- Enable oneof_enum test case that passes now (removed the xfail) - Switch from toml to tomlkit as a dev dep for better toml support - upgrade poethepoet to latest stable release - use full table format for poe tasks to avoid long lines in pyproject.toml - remove redundant _WrappedMessage class - fix various Mypy warnings - reformat some comments for consistent line length
23 lines
650 B
Python
23 lines
650 B
Python
# Test cases that are expected to fail, e.g. unimplemented features or bug-fixes.
|
|
# Remove from list when fixed.
|
|
xfail = {
|
|
"namespace_keywords", # 70
|
|
"namespace_builtin_types", # 53
|
|
"googletypes_struct", # 9
|
|
"googletypes_value", # 9
|
|
"import_capitalized_package",
|
|
"example", # This is the example in the readme. Not a test.
|
|
}
|
|
|
|
services = {
|
|
"googletypes_response",
|
|
"googletypes_response_embedded",
|
|
"service",
|
|
"service_separate_packages",
|
|
"import_service_input_message",
|
|
"googletypes_service_returns_empty",
|
|
"googletypes_service_returns_googletype",
|
|
"example_service",
|
|
"empty_service",
|
|
}
|