Lines Matching refs:variants
19 from testrunner.local.variants import ALL_VARIANTS
41 # Additional variants, run on all bots.
45 # Additional variants, run on a subset of bots.
89 parser.add_option('--no-variants', '--novariants',
91 'Equivalent to passing --variants=default',
93 parser.add_option('--variants',
94 help='Comma-separated list of testing variants;'
96 parser.add_option('--exhaustive-variants',
99 'Equivalent to passing --variants=exhaustive')
172 print ('Option --no-variants is deprecated. '
173 'Pass --variants=default instead.')
174 assert not options.variants
175 options.variants = 'default'
178 # TODO(machenbach): Switch infra to --variants=exhaustive after M65.
179 print ('Option --exhaustive-variants is deprecated. '
180 'Pass --variants=exhaustive instead.')
182 # variants.
183 # Other options for manipulating variants still apply afterwards.
184 assert not options.variants
185 options.variants = 'exhaustive'
188 assert not options.variants
189 options.variants = 'stress,default'
194 options.variants = 'default'
202 # TODO(machenbach): Figure out how to test a bigger subset of variants on
205 options.variants = 'default'
207 if options.variants == 'infra_staging':
208 options.variants = 'exhaustive'
210 self._variants = self._parse_variants(options.variants)
249 print(' Available variants: %s' % ALL_VARIANTS)