Fix #139: newlines in async for comprehension

This commit is contained in:
Jocelyn Boullier
2020-06-28 13:26:19 +02:00
parent 7e0586b0b9
commit 88874a5a9f
4 changed files with 39 additions and 1 deletions

View File

@@ -158,6 +158,10 @@ def works_ge_py35(each_version):
version_info = parse_version_string(each_version)
return Checker(each_version, version_info >= (3, 5))
@pytest.fixture
def works_ge_py36(each_version):
version_info = parse_version_string(each_version)
return Checker(each_version, version_info >= (3, 6))
@pytest.fixture
def works_ge_py38(each_version):