From 686c14a2eba6ae8aafe4e207a5404fcf9dd68917 Mon Sep 17 00:00:00 2001 From: Christian Date: Tue, 17 Oct 2023 10:28:04 +0200 Subject: [PATCH] skip namespace tests if version is lower than 4.9 No-Issue --- galaxy_ng/tests/integration/api/test_namespace_management.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/galaxy_ng/tests/integration/api/test_namespace_management.py b/galaxy_ng/tests/integration/api/test_namespace_management.py index f47cf9ccb9..897907231a 100644 --- a/galaxy_ng/tests/integration/api/test_namespace_management.py +++ b/galaxy_ng/tests/integration/api/test_namespace_management.py @@ -68,6 +68,7 @@ def test_namespace_create_and_delete(ansible_config, api_version): 'username' ] ) +@pytest.mark.min_hub_version("4.9") def test_namespace_create_with_user(ansible_config, user_property): config = ansible_config("partner_engineer") api_client = get_client(config, request_token=True, require_auth=True) @@ -113,6 +114,7 @@ def test_namespace_create_with_user(ansible_config, user_property): 'username' ] ) +@pytest.mark.min_hub_version("4.9") def test_namespace_edit_with_user(ansible_config, user_property): config = ansible_config("partner_engineer") api_client = get_client(config, request_token=True, require_auth=True)