From d5a65ba52129b12bade9a91b0ae6001029e983ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Eide?= Date: Tue, 3 Dec 2024 11:27:02 +0100 Subject: [PATCH] Remove unused fixture --- tests/everest/conftest.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/everest/conftest.py b/tests/everest/conftest.py index cba6e2aa6bc..0974652c7b4 100644 --- a/tests/everest/conftest.py +++ b/tests/everest/conftest.py @@ -111,13 +111,6 @@ def copy_test_data_to_tmp(tmp_path, monkeypatch): monkeypatch.chdir(tmp_path) -@pytest.fixture -def copy_snake_oil_to_tmp(tmp_path, monkeypatch): - path = relpath("test_data", "snake_oil") - shutil.copytree(path, tmp_path / "snake_oil", dirs_exist_ok=True) - monkeypatch.chdir(tmp_path) - - @pytest.fixture def copy_template_test_data_to_tmp(tmp_path, monkeypatch): path = relpath("test_data", "templating")