Fix lint.
This commit is contained in:
parent
66ed4e9c4e
commit
909cafb516
@ -30,13 +30,11 @@ import pytest_capturelog # pylint: disable=import-error
|
|||||||
pytest_plugins = 'pytester'
|
pytest_plugins = 'pytester'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def log_testdir(testdir):
|
def log_testdir(testdir):
|
||||||
"""Testdir which uses our logfail.py as a conftest."""
|
"""Testdir which uses our logfail.py as a conftest."""
|
||||||
log_fn = os.path.join(os.path.dirname(__file__), 'logfail.py')
|
log_fn = os.path.join(os.path.dirname(__file__), 'logfail.py')
|
||||||
with open(log_fn) as f:
|
with open(log_fn, encoding='utf-8') as f:
|
||||||
testdir.makeconftest(f.read())
|
testdir.makeconftest(f.read())
|
||||||
return testdir
|
return testdir
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user