Lines Matching full:all
97 parser.add_argument('--buildMode', type=str, dest='build_mode', default='all',
98 choices=['all', 'assemble', 'preview', 'hotreload', 'hotfix'],
100 parser.add_argument('--hapMode', type=str, dest='hap_mode', default='all',
101 choices=['all', 'debug', 'release'],
103 parser.add_argument('--compileMode', type=str, dest='compile_mode', default='all',
104 choices=['all', 'full', 'incremental'],
106 parser.add_argument('--testCase', type=str, dest='test_case', default='all',
107 choices=['all', 'fa', 'stage', 'compatible8', 'js'],
109 parser.add_argument('--testHap', type=str, dest='test_hap', default='all',
110 … help="specify test haps, option can be 'all' or a list of haps seperated by ','")
152 test_cases = 'all' if arguments.test_case == 'all' else []
153 test_haps = 'all' if arguments.test_hap == 'all' else []
154 if test_cases != 'all':
156 if test_haps != 'all':
160 if test_cases == 'all' or test_haps == 'all' \