Return an xmlschema.XMLSchema object for the junit-10.xsd file.
()
| 27 | |
| 28 | @pytest.fixture(scope="session") |
| 29 | def schema() -> xmlschema.XMLSchema: |
| 30 | """Return an xmlschema.XMLSchema object for the junit-10.xsd file.""" |
| 31 | fn = Path(__file__).parent / "example_scripts/junit-10.xsd" |
| 32 | with fn.open(encoding="utf-8") as f: |
| 33 | return xmlschema.XMLSchema(f) |
| 34 | |
| 35 | |
| 36 | class RunAndParse: |
nothing calls this directly
no test coverage detected
searching dependent graphs…