(self)
| 1864 | self.assertIn('input', c.exception.args[0]) |
| 1865 | |
| 1866 | def test_check_output_timeout(self): |
| 1867 | with self.assertRaises(subprocess.TimeoutExpired) as c: |
| 1868 | cp = self.run_python( |
| 1869 | "import time; time.sleep(3600)", |
| 1870 | timeout=0.1, stdout=subprocess.PIPE) |
| 1871 | |
| 1872 | def test_run_kwargs(self): |
| 1873 | newenv = os.environ.copy() |
nothing calls this directly
no test coverage detected