summaryrefslogtreecommitdiffhomepage
path: root/test/test_python_procman.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_python_procman.py')
-rw-r--r--test/test_python_procman.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_python_procman.py b/test/test_python_procman.py
index d3bcaa53..82766d65 100644
--- a/test/test_python_procman.py
+++ b/test/test_python_procman.py
@@ -11,8 +11,9 @@ from unit.option import option
class TestPythonProcman(TestApplicationPython):
prerequisites = {'modules': {'python': 'any'}}
- def setup_method(self):
- self.app_name = f'app-{option.temp_dir.split("/")[-1]}'
+ @pytest.fixture(autouse=True)
+ def setup_method_fixture(self, temp_dir):
+ self.app_name = f'app-{temp_dir.split("/")[-1]}'
self.app_proc = f'applications/{self.app_name}/processes'
self.load('empty', self.app_name)