[Tests] Fix PytestDeprecationWarning from pytest

Accessing pytest.config is deprecated and produces:
PytestDeprecationWarning: the pytest.config global is deprecated. Please use
request.config or pytest_configure (if you're a pytest plugin) instead.

Fix by using a pytest.fixture
This commit is contained in:
bendikro 2019-10-25 00:05:21 +02:00 committed by Calum Lind
parent 3427ae4b90
commit 742c8a941a
1 changed files with 10 additions and 6 deletions

View File

@ -19,11 +19,17 @@ from deluge.common import windows_check
from . import common
@pytest.mark.usefixtures('get_pytest_basetemp')
class DaemonBase(object):
basetemp = None
if windows_check():
skip = 'windows cant start_core not enough arguments for format string'
@pytest.fixture
def get_pytest_basetemp(self, request):
self.basetemp = request.config.option.basetemp
def common_set_up(self):
common.set_tmp_config_dir()
self.listen_port = 58900
@ -56,12 +62,10 @@ class DaemonBase(object):
# We are running py.test
if hasattr(pytest, 'config'):
# Put log file in the py.test --basetemp argument
basetemp = pytest.config.option.basetemp
if basetemp:
if not os.path.exists(basetemp):
os.makedirs(basetemp)
logfile = os.path.join(basetemp, logfile)
if self.basetemp:
if not os.path.exists(self.basetemp):
os.makedirs(self.basetemp)
logfile = os.path.join(self.basetemp, logfile)
for dummy in range(port_range):
try: