()
| 1000 | |
| 1001 | |
| 1002 | def test_mangle_test_address() -> None: |
| 1003 | from _pytest.junitxml import mangle_test_address |
| 1004 | |
| 1005 | address = "::".join(["a/my.py.thing.py", "Class", "method", "[a-1-::]"]) |
| 1006 | newnames = mangle_test_address(address) |
| 1007 | assert newnames == ["a.my.py.thing", "Class", "method", "[a-1-::]"] |
| 1008 | |
| 1009 | |
| 1010 | def test_dont_configure_on_workers(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…