Files
deb-python-wrapt/tests/conftest.py
2016-06-15 18:45:27 +07:00

18 lines
512 B
Python

import sys
import pytest
version = tuple(sys.version_info[:2])
class DummyCollector(pytest.collect.File):
def collect(self):
return []
def pytest_pycollect_makemodule(path, parent):
if '_py33' in path.basename and version < (3, 3):
return DummyCollector(path, parent=parent)
if '_py3' in path.basename and version < (3, 0):
return DummyCollector(path, parent=parent)
if '_py2' in path.basename and version >= (3, 0):
return DummyCollector(path, parent=parent)