From 234638da97d42621fafb684f714add7680fe5ea5 Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Sun, 10 Nov 2024 11:43:45 +0000 Subject: [PATCH] fixup --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 377096c8..c1611701 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -133,7 +133,7 @@ def tmp_test_data(tmpdir: "LocalPath") -> Iterator[Path]: temp_dir = Path(tmpdir) copytree(str(dirname), str(temp_dir / dirname)) yield dirname - copytree(str(temp_dir / dirname), str(dirname)) + copytree(str(temp_dir / dirname), str(dirname), dirs_exist_ok=True) @pytest.fixture