Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skip if jira is open and hub from aap installation #2165

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading