1
0
forked from VimPlug/jedi

Dataclass progress

This commit is contained in:
Dave Halter
2019-07-19 01:27:37 +02:00
parent fd4eca5e03
commit 1cccc832b6
4 changed files with 69 additions and 8 deletions

View File

@@ -140,3 +140,11 @@ def skip_pre_python38(environment):
# This if is just needed to avoid that tests ever skip way more than
# they should for all Python versions.
pytest.skip()
@pytest.fixture()
def skip_pre_python37(environment):
if environment.version_info < (3, 7):
# This if is just needed to avoid that tests ever skip way more than
# they should for all Python versions.
pytest.skip()