Lines Matching +full:- +full:testplan
4 # SPDX-License-Identifier: Apache-2.0
16 # pylint: disable=no-name-in-module
18 from twisterlib.testplan import TestPlan
33 @mock.patch.object(TestPlan, 'TESTSUITE_FILENAME', testsuite_filename_mock)
37 alt_config_root = os.path.join(TEST_DATA, 'alt-test-configs', 'dummy')
38 args = ['-i', '--outdir', out_path, '-T', path, '-y'] + \
39 ['--alt-config-root', alt_config_root] + \
40 ['--tag', 'alternate-config-root'] + \
42 ['-p'] * len(test_platforms), test_platforms
49 with open(os.path.join(out_path, 'testplan.json')) as f:
69 @mock.patch.object(TestPlan, 'TESTSUITE_FILENAME', testsuite_filename_mock)
74 args = ['-i','--outdir', out_path, '-T', path, '--level', level, '-y',
75 '--test-config', config_path] + \
77 ['-p'] * len(test_platforms), test_platforms
84 with open(os.path.join(out_path, 'testplan.json')) as f: