(self)
| 935 | self.run_tests(args) |
| 936 | |
| 937 | def test_module_autotest(self): |
| 938 | # -m test.autotest |
| 939 | args = [*self.python_args, '-m', 'test.autotest', |
| 940 | *self.regrtest_args, *self.tests] |
| 941 | self.run_tests(args) |
| 942 | |
| 943 | def test_module_from_test_autotest(self): |
| 944 | # from test import autotest |