(self, *args)
| 954 | self.run_tests(args) |
| 955 | |
| 956 | def run_batch(self, *args): |
| 957 | proc = self.run_command(args, |
| 958 | # gh-133711: cmd.exe uses the OEM code page |
| 959 | # to display the non-ASCII current directory |
| 960 | errors="backslashreplace") |
| 961 | self.check_output(proc.stdout) |
| 962 | |
| 963 | @unittest.skipUnless(sysconfig.is_python_build(), |
| 964 | 'test.bat script is not installed') |
no test coverage detected