conftest: add TestRun cache/core list

Signed-off-by: Kamil Gierszewski <kamil.gierszewski@huawei.com>
This commit is contained in:
Kamil Gierszewski 2025-01-02 03:08:25 +01:00
parent e1f8426527
commit bef461ccc2
No known key found for this signature in database

View File

@ -136,6 +136,8 @@ def pytest_runtest_setup(item):
TestRun.dut.plugin_manager = TestRun.plugin_manager TestRun.dut.plugin_manager = TestRun.plugin_manager
TestRun.dut.executor = TestRun.executor TestRun.dut.executor = TestRun.executor
TestRun.TEST_RUN_DATA_PATH = TEST_RUN_DATA_PATH TestRun.TEST_RUN_DATA_PATH = TEST_RUN_DATA_PATH
TestRun.dut.cache_list = []
TestRun.dut.core_list = []
TestRun.duts.append(TestRun.dut) TestRun.duts.append(TestRun.dut)
base_prepare(item) base_prepare(item)