Merge branch 'master' into client-streaming

This commit is contained in:
nat
2020-06-23 22:02:23 +02:00
committed by GitHub
14 changed files with 1151 additions and 560 deletions

View File

@@ -25,7 +25,7 @@ class TestCases:
def __init__(self, path, services: Set[str], xfail: Set[str]):
_all = set(get_directories(path)) - {"__pycache__"}
_services = services
_messages = _all - services
_messages = (_all - services) - {"__pycache__"}
_messages_with_json = {
test for test in _messages if get_test_case_json_data(test)
}