(self, args, isolated=True, **kw)
| 846 | return proc |
| 847 | |
| 848 | def run_python(self, args, isolated=True, **kw): |
| 849 | extraargs = [] |
| 850 | if 'uops' in sys._xoptions: |
| 851 | # Pass -X uops along |
| 852 | extraargs.extend(['-X', 'uops']) |
| 853 | cmd = [sys.executable, *extraargs, '-X', 'faulthandler'] |
| 854 | if isolated: |
| 855 | cmd.append('-I') |
| 856 | cmd.extend(args) |
| 857 | proc = self.run_command(cmd, **kw) |
| 858 | return proc.stdout |
| 859 | |
| 860 | |
| 861 | class CheckActualTests(BaseTestCase): |
no test coverage detected