(self, *args)
| 920 | self.run_tests(args) |
| 921 | |
| 922 | def run_batch(self, *args): |
| 923 | proc = self.run_command(args, |
| 924 | # gh-133711: cmd.exe uses the OEM code page |
| 925 | # to display the non-ASCII current directory |
| 926 | errors="backslashreplace") |
| 927 | self.check_output(proc.stdout) |
| 928 | |
| 929 | @unittest.skipUnless(sysconfig.is_python_build(), |
| 930 | 'test.bat script is not installed') |
no test coverage detected