Skip to content

Commit

Permalink
skip if jira is open and hub from aap installation (#2165)
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
chr-stian authored Jun 11, 2024
1 parent 41ce019 commit bc70fe3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion galaxy_ng/tests/integration/api/test_openapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from openapi_spec_validator import validate_spec

from ..utils import is_docker_installed

from ..utils.iqe_utils import is_dev_env_standalone

pytestmark = pytest.mark.qa # noqa: F821

Expand All @@ -31,6 +31,7 @@

@pytest.mark.openapi
@pytest.mark.all
@pytest.mark.skipif(not is_dev_env_standalone(), reason="AAP-20597")
def test_galaxy_openapi_no_pulp_variables(galaxy_client):
"""Tests whether openapi.json has valid path names"""

Expand Down Expand Up @@ -60,6 +61,7 @@ def test_galaxy_openapi_validation(galaxy_client):
@pytest.mark.openapi
@pytest.mark.min_hub_version("4.6dev")
@pytest.mark.all
@pytest.mark.skipif(not is_dev_env_standalone(), reason="AAP-20597")
def test_pulp_openapi_has_variables(galaxy_client):
"""Tests whether openapi.json has valid path names for pulp"""
gc = galaxy_client("basic_user")
Expand Down

0 comments on commit bc70fe3

Please sign in to comment.