From e036c43d741a8786f458b6196d9666d90e389875 Mon Sep 17 00:00:00 2001 From: Wolf Vollprecht Date: Tue, 16 Jan 2024 22:29:57 +0100 Subject: [PATCH] lint --- quetz/tests/test_pkg_stores.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quetz/tests/test_pkg_stores.py b/quetz/tests/test_pkg_stores.py index f9ebb8e7..fc26142a 100644 --- a/quetz/tests/test_pkg_stores.py +++ b/quetz/tests/test_pkg_stores.py @@ -253,6 +253,7 @@ def test_move_file(any_store, channel, channel_name): assert_files(pkg_store, channel_name, ['test_2.txt']) + def test_copy_file(any_store, channel, channel_name): pkg_store = any_store @@ -261,6 +262,7 @@ def test_copy_file(any_store, channel, channel_name): assert_files(pkg_store, channel_name, ['test.txt', 'test_2.txt']) + @pytest.mark.parametrize("redirect_enabled", [False, True]) @pytest.mark.parametrize("redirect_endpoint", ["/files", "/static"]) def test_local_store_url(redirect_enabled, redirect_endpoint):