(self)
| 4 | |
| 5 | class TestPapermill(unittest.TestCase): |
| 6 | def test_papermill(self): |
| 7 | result = subprocess.run([ |
| 8 | 'papermill', |
| 9 | '/input/tests/data/notebook.ipynb', |
| 10 | '-', |
| 11 | ], stdout=subprocess.PIPE) |
| 12 | |
| 13 | self.assertEqual(0, result.returncode) |
| 14 | self.assertTrue(b'999' in result.stdout) |
nothing calls this directly
no outgoing calls
no test coverage detected