in container_images/pytest/main.py [0:0]
def archive_configs(dst: Path):
if dst.exists():
assert dst.is_dir(), f"Expected {dst} to be a directory."
else:
dst.mkdir()
print("Saving config files to ", dst)
for fname in ["pyproject.toml", "tox.ini"]:
shutil.copy2(fname, dst)