Lines Matching full:tests
3 # Configure environment and run group of tests in it.
48 help='show me, do not run tests')
50 help='run tests in multiple parallel jobs')
107 g_bash = p.add_argument_group('bash tests options',
109 'python tests.')
119 help='include tests from these groups')
121 help='exclude tests from these groups')
124 'of tests as usual and then drop tests from the first '
128 g_sel.add_argument('tests', metavar='TEST_FILES', nargs='*',
129 help='tests to run, or "--" followed by a command')
151 if len(sys.argv) > 1 and sys.argv[-len(args.tests)-1] == '--':
152 if not args.tests:
154 cmd = args.tests
178 tests = testfinder.find_tests(groups=groups, exclude_groups=x_groups, variable
179 tests=args.tests,
181 if not tests:
182 raise ValueError('No tests selected')
188 print('\n'.join([os.path.basename(t) for t in tests]))
192 paths = [os.path.join(env.source_iotests, t) for t in tests]