diff options
Diffstat (limited to '')
-rw-r--r-- | test/test_asgi_targets.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/test_asgi_targets.py b/test/test_asgi_targets.py index 5afc7079..0c9d9ad0 100644 --- a/test/test_asgi_targets.py +++ b/test/test_asgi_targets.py @@ -3,13 +3,12 @@ from packaging import version from unit.applications.lang.python import TestApplicationPython from unit.option import option +prerequisites = { + 'modules': {'python': lambda v: version.parse(v) >= version.parse('3.5')} +} + class TestASGITargets(TestApplicationPython): - prerequisites = { - 'modules': { - 'python': lambda v: version.parse(v) >= version.parse('3.5') - } - } load_module = 'asgi' @pytest.fixture(autouse=True) |