Home
last modified time | relevance | path

Searched refs:TestInstance (Results 1 – 9 of 9) sorted by relevance

/Zephyr-Core-3.7.0/scripts/tests/twister/pytest_integration/
Dtest_harness_pytest.py13 from twisterlib.testinstance import TestInstance
18 def testinstance() -> TestInstance:
25 testinstance = TestInstance(testsuite, platform, 'outdir')
36 def test_pytest_command(testinstance: TestInstance, device_type): argument
56 def test_pytest_command_dut_scope(testinstance: TestInstance): argument
65 def test_pytest_command_extra_args(testinstance: TestInstance): argument
75 def test_pytest_command_extra_args_in_options(testinstance: TestInstance): argument
138 def test_pytest_handle_source_list(testinstance: TestInstance, monkeypatch, pytest_root, expected): argument
149 def test_if_report_is_parsed(pytester, testinstance: TestInstance): argument
179 def test_if_report_with_error(pytester, testinstance: TestInstance): argument
[all …]
/Zephyr-Core-3.7.0/scripts/tests/twister/
Dtest_testinstance.py19 from twisterlib.testinstance import TestInstance
69 testinstance = TestInstance(testsuite, platform, class_testplan.env.outdir)
139 testinstance = TestInstance(testcase, platform, class_testplan.env.outdir)
150 testinstance = TestInstance(testcase, platform, class_testplan.env.outdir)
202 testinstance = TestInstance(testsuite, platform, class_testplan.env.outdir)
221 testinstance = TestInstance(testsuite, platform, class_testplan.env.outdir)
280 testinstance = TestInstance(testsuite, platform, class_testplan.env.outdir)
334 testinstance = TestInstance(testsuite, platform, class_testplan.env.outdir)
335 testinstance_copy = TestInstance(testsuite, platform, class_testplan.env.outdir)
441 can_run = TestInstance.testsuite_runnable(testsuite, fixtures)\
Dtest_harness.py23 from twisterlib.testinstance import TestInstance
134 instance = TestInstance(testsuite=mock_testsuite, platform=mock_platform, outdir=outdir)
163 instance = TestInstance(testsuite=mock_testsuite, platform=mock_platform, outdir=outdir)
208 instance = TestInstance(testsuite=mock_testsuite, platform=mock_platform, outdir=outdir)
257 instance = TestInstance(testsuite=mock_testsuite, platform=mock_platform, outdir=outdir)
299 instance = TestInstance(testsuite=mock_testsuite, platform=mock_platform, outdir=outdir)
358 instance = TestInstance(testsuite=mock_testsuite, platform=mock_platform, outdir=outdir)
455 instance = TestInstance(testsuite=mock_testsuite, platform=mock_platform, outdir=outdir)
512 instance = TestInstance(testsuite=mock_testsuite, platform=mock_platform, outdir=outdir)
546 instance = TestInstance(testsuite=mock_testsuite, platform=mock_platform, outdir=outdir)
Dconftest.py18 from twisterlib.testinstance import TestInstance
93 instance = TestInstance(testcase, platform, class_testplan.outdir)
Dtest_testplan.py20 from twisterlib.testinstance import TestInstance
264 instance = TestInstance(testcase, platform, class_env.outdir)
269 assert all(isinstance(n, TestInstance) for n in list(plan.instances.values()))
/Zephyr-Core-3.7.0/scripts/pylib/twister/twisterlib/
Dharness.py21 from twisterlib.testinstance import TestInstance
68 self.instance: TestInstance | None = None
336 def configure(self, instance: TestInstance): argument
Dtestplan.py36 from twisterlib.testinstance import TestInstance
581 def handle_quarantined_tests(self, instance: TestInstance, plat: Platform): argument
604 instance = TestInstance(self.testsuites[testsuite], platform, self.env.outdir)
779 instance = TestInstance(ts, plat, self.env.outdir)
Drunner.py42 from twisterlib.testinstance import TestInstance
535 def __init__(self, instance: TestInstance, env: TwisterEnv, jobserver, **kwargs): argument
1154 def gather_metrics(self, instance: TestInstance): argument
1169 def calc_size(instance: TestInstance, from_buildlog: bool): argument
Dtestinstance.py33 class TestInstance: class