(self)
| 5 | |
| 6 | class test_pytest(unittest.TestCase): |
| 7 | def test_pytest_on_pandas_test(self): |
| 8 | cmd = 'pytest /input/tests/test_pandas.py' |
| 9 | result = subprocess.run(cmd, shell=True, capture_output=True) |
| 10 | self.assertEqual(result.returncode, 0) |
nothing calls this directly
no outgoing calls
no test coverage detected