File size: 205 Bytes
312fb3f | 1 2 3 4 5 6 7 8 9 | from pathlib import Path
PROJECT_ROOT = Path(__file__).resolve().parents[1]
def test_editable_install_leaves_source_tree_clean() -> None:
assert not list((PROJECT_ROOT / "src").glob("*.egg-info"))
|