Lines Matching +full:- +full:testplan
4 # SPDX-License-Identifier: Apache-2.0
6 Blackbox tests for twister's command line functions - those requiring testplan.json
16 # pylint: disable=no-name-in-module
18 from twisterlib.testplan import TestPlan
58 @mock.patch.object(TestPlan, 'TESTSUITE_FILENAME', testsuite_filename_mock)
62 args = ['-i', '--outdir', out_path, '-T', path, '--sub-test', test, '-y'] + \
64 ['-p'] * len(test_platforms), test_platforms
75 with open(os.path.join(out_path, 'testplan.json')) as f:
91 @mock.patch.object(TestPlan, 'TESTSUITE_FILENAME', testsuite_filename_mock)
95 args = ['-i', '--outdir', out_path, '-T', path, '--filter', filter, '-y'] + \
97 ['-p'] * len(test_platforms), test_platforms
106 with open(os.path.join(out_path, 'testplan.json')) as f:
123 @mock.patch.object(TestPlan, 'TESTSUITE_FILENAME', testsuite_filename_mock)
124 @mock.patch.object(TestPlan, 'SAMPLE_FILENAME', '')
128 args = ['-i', '--outdir', out_path, '-T', path, '-y'] + \
129 (['--integration'] if integration else []) + \
131 ['-p'] * len(test_platforms), test_platforms
140 with open(os.path.join(out_path, 'testplan.json')) as f: