(self, testcase: DataDrivenTestCase)
| 43 | native_sep = True |
| 44 | |
| 45 | def run_case(self, testcase: DataDrivenTestCase) -> None: |
| 46 | if lxml is None and os.path.basename(testcase.file) == "reports.test": |
| 47 | pytest.skip("Cannot import lxml. Is it installed?") |
| 48 | for step in [1] + sorted(testcase.output2): |
| 49 | test_python_cmdline(testcase, step) |
| 50 | |
| 51 | |
| 52 | def test_python_cmdline(testcase: DataDrivenTestCase, step: int) -> None: |
nothing calls this directly
no test coverage detected