Write an abstraction to test if source code is valid for a certain python version or not.

This commit is contained in:
Dave Halter
2017-07-12 18:58:43 +02:00
parent d3115acb33
commit abc4852bd4
2 changed files with 41 additions and 18 deletions

View File

@@ -102,4 +102,4 @@ def each_py3_version():
@pytest.fixture
def each_py2_version():
return '3.3', '3.4', '3.5', '3.6'
return '2.6', '2.7'