Lines Matching refs:group
162 group = parser.add_argument_group('General options')
164 group.add_argument('-h', '--help', action='help',
166 group.add_argument('--timeout', metavar='TIMEOUT', type=float,
170 group.add_argument('--wait', action='store_true',
173 group.add_argument('--worker-args', metavar='ARGS')
174 group.add_argument('-S', '--start', metavar='START',
178 group = parser.add_argument_group('Verbosity')
179 group.add_argument('-v', '--verbose', action='count',
181 group.add_argument('-w', '--verbose2', action='store_true',
183 group.add_argument('-W', '--verbose3', action='store_true',
185 group.add_argument('-q', '--quiet', action='store_true',
187 group.add_argument('-o', '--slowest', action='store_true', dest='print_slow',
189 group.add_argument('--header', action='store_true',
192 group = parser.add_argument_group('Selecting tests')
193 group.add_argument('-r', '--randomize', action='store_true',
195 group.add_argument('--randseed', metavar='SEED',
199 group.add_argument('-f', '--fromfile', metavar='FILE',
202 group.add_argument('-x', '--exclude', action='store_true',
204 group.add_argument('-s', '--single', action='store_true',
207 group.add_argument('-m', '--match', metavar='PAT',
210 group.add_argument('--matchfile', metavar='FILENAME',
214 group.add_argument('-G', '--failfast', action='store_true',
216 group.add_argument('-u', '--use', metavar='RES1,RES2,...',
220 group.add_argument('-M', '--memlimit', metavar='LIMIT',
223 group.add_argument('--testdir', metavar='DIR',
228 group = parser.add_argument_group('Special runs')
229 group.add_argument('-l', '--findleaks', action='store_true',
231 group.add_argument('-L', '--runleaks', action='store_true',
234 group.add_argument('-R', '--huntrleaks', metavar='RUNCOUNTS',
238 group.add_argument('-j', '--multiprocess', metavar='PROCESSES',
241 group.add_argument('-T', '--coverage', action='store_true',
245 group.add_argument('-D', '--coverdir', metavar='DIR',
248 group.add_argument('-N', '--nocoverdir',
251 group.add_argument('-t', '--threshold', metavar='THRESHOLD',
254 group.add_argument('-n', '--nowindows', action='store_true',
256 group.add_argument('-F', '--forever', action='store_true',
259 group.add_argument('--list-tests', action='store_true',
262 group.add_argument('--list-cases', action='store_true',
265 group.add_argument('-P', '--pgo', dest='pgo', action='store_true',
267 group.add_argument('--fail-env-changed', action='store_true',
271 group.add_argument('--junit-xml', dest='xmlpath', metavar='FILENAME',
274 group.add_argument('--tempdir', dest='tempdir', metavar='PATH',