From 69103eb012c57f629ccaa091c2153ef2a513a1eb Mon Sep 17 00:00:00 2001 From: Bruno Rocha Date: Thu, 26 Sep 2024 18:10:15 +0100 Subject: [PATCH] Skip package install test on DAB profile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DAB canĀ“t be installed on DAB profile because it is not released yet. No-Issue --- galaxy_ng/tests/integration/package/test_package_install.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/galaxy_ng/tests/integration/package/test_package_install.py b/galaxy_ng/tests/integration/package/test_package_install.py index 2950ef3fc3..89a907519a 100644 --- a/galaxy_ng/tests/integration/package/test_package_install.py +++ b/galaxy_ng/tests/integration/package/test_package_install.py @@ -4,6 +4,7 @@ """ +import os import pytest import subprocess import tempfile @@ -21,6 +22,10 @@ {'LOCK_REQUIREMENTS': '0'} ] ) +@pytest.mark.skipif( + os.environ.get('JWT_PROXY') is not None, + reason="django-ansible-base fails to install under dab profile" +) def test_package_install(env_vars): """smoktest setup.py"""