move files into the pytest file structure

This commit is contained in:
David Szotten 2018-10-14 09:23:21 +01:00
parent d9c428c1de
commit c56d7ac40e
5 changed files with 0 additions and 20 deletions

View File

@ -1 +0,0 @@
__version__ = '0.4'

View File

@ -1,18 +0,0 @@
import pytest
try:
from _pytest.cacheprovider import Cache
except ImportError:
from pytest_cache import Cache
try:
# pytest 3.7+
Cache = Cache.for_config
except AttributeError:
pass
if hasattr(pytest, 'hookimpl'):
tryfirst = pytest.hookimpl(tryfirst=True)
else:
tryfirst = pytest.mark.tryfirst

View File

@ -1 +0,0 @@
pytest_plugins = 'pytester'