From fb09e8c89cb8ca329887f0e5e997cfd7dfc60ed7 Mon Sep 17 00:00:00 2001 From: christian Date: Tue, 19 Mar 2024 19:48:05 +0100 Subject: [PATCH] skip test (#2100) No-Issue --- galaxy_ng/tests/integration/api/test_api_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/galaxy_ng/tests/integration/api/test_api_base.py b/galaxy_ng/tests/integration/api/test_api_base.py index 4c8ddec6f4..7d1857fd9f 100644 --- a/galaxy_ng/tests/integration/api/test_api_base.py +++ b/galaxy_ng/tests/integration/api/test_api_base.py @@ -3,19 +3,19 @@ from ..utils.iqe_utils import remove_from_cache -@pytest.mark.min_hub_version("4.6dev") +@pytest.mark.min_hub_version("4.10dev") @pytest.mark.deployment_standalone @pytest.mark.skip_in_gw def test_galaxy_api_root_standalone_no_auth_access(galaxy_client): """Test galaxy API root.""" gc = galaxy_client("basic_user") + remove_from_cache("basic_user") del gc.headers["Authorization"] # verify api root works without authentication response = gc.get("") assert "v3" in response["available_versions"] assert "pulp-v3" in response["available_versions"] - remove_from_cache("basic_user") @pytest.mark.min_hub_version("4.6dev")