From 74c6f8ed3fe6fd5ff4c38ee66c17d138b47b8087 Mon Sep 17 00:00:00 2001 From: Christian Date: Tue, 19 Mar 2024 18:50:43 +0100 Subject: [PATCH] skip test 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")