From a825b3ecf69e3cc2ee6c9d74635f7dc1aadf3fe1 Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 19 Oct 2023 11:58:02 +0200 Subject: [PATCH] smoke tests after AAP installation No-Issue --- galaxy_ng/tests/integration/api/test_artifact_download.py | 1 + galaxy_ng/tests/integration/conftest.py | 1 + 2 files changed, 2 insertions(+) diff --git a/galaxy_ng/tests/integration/api/test_artifact_download.py b/galaxy_ng/tests/integration/api/test_artifact_download.py index 6d553d69e1..4d8eff83d2 100644 --- a/galaxy_ng/tests/integration/api/test_artifact_download.py +++ b/galaxy_ng/tests/integration/api/test_artifact_download.py @@ -21,6 +21,7 @@ # TODO Refactor get_client to provide access to bearer token @pytest.mark.deployment_standalone +@pytest.mark.installer_smoke_test def test_download_artifact(ansible_config, upload_artifact, galaxy_client): config = ansible_config("partner_engineer") api_client = get_client(config, request_token=True, require_auth=True) diff --git a/galaxy_ng/tests/integration/conftest.py b/galaxy_ng/tests/integration/conftest.py index d0bf236761..4b5b6b799f 100755 --- a/galaxy_ng/tests/integration/conftest.py +++ b/galaxy_ng/tests/integration/conftest.py @@ -80,6 +80,7 @@ repositories: tests verifying custom repositories all: tests that are unmarked and should pass in all deployment modes galaxy_stage_ansible: tests that run against galaxy-stage.ansible.com +installer_smoke_test: smoke tests to validate AAP installation (VM) """ logger = logging.getLogger(__name__)