Merge pull request #75 from nat-n/add_poetry

Switch from pipenv to poetry
This commit is contained in:
Bouke Versteegh
2020-06-23 21:59:46 +02:00
committed by GitHub
11 changed files with 1136 additions and 559 deletions

0
betterproto/tests/generate.py Normal file → Executable file
View File

View File

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