(self)
| 1798 | return subprocess.run(argv, **kwargs) |
| 1799 | |
| 1800 | def test_returncode(self): |
| 1801 | # call() function with sequence argument |
| 1802 | cp = self.run_python("import sys; sys.exit(47)") |
| 1803 | self.assertEqual(cp.returncode, 47) |
| 1804 | with self.assertRaises(subprocess.CalledProcessError): |
| 1805 | cp.check_returncode() |
| 1806 | |
| 1807 | def test_check(self): |
| 1808 | with self.assertRaises(subprocess.CalledProcessError) as c: |
nothing calls this directly
no test coverage detected