From aefc6afb4aff56b619c1713412315ecd0e2b787c Mon Sep 17 00:00:00 2001 From: Eamon Tracey <66919574+EamonTracey@users.noreply.github.com> Date: Tue, 11 Jul 2023 11:04:42 -0400 Subject: [PATCH] Remove forced skip of test_publish_and_expect_uncertified_hidden (#1791) * remove forced skip of test_publish_and_expect_uncertified_hidden Issue: AAH-2442 Signed-off-by: EamonTracey --- CHANGES/2442.misc | 1 + galaxy_ng/tests/integration/cli/test_cli_flow.py | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) create mode 100644 CHANGES/2442.misc diff --git a/CHANGES/2442.misc b/CHANGES/2442.misc new file mode 100644 index 0000000000..1eb87ff1f3 --- /dev/null +++ b/CHANGES/2442.misc @@ -0,0 +1 @@ +Remove the forced skip of an integration test diff --git a/galaxy_ng/tests/integration/cli/test_cli_flow.py b/galaxy_ng/tests/integration/cli/test_cli_flow.py index 46ba8a393f..c4f62306fe 100644 --- a/galaxy_ng/tests/integration/cli/test_cli_flow.py +++ b/galaxy_ng/tests/integration/cli/test_cli_flow.py @@ -107,9 +107,6 @@ def test_publish_and_install_by_self(ansible_config, published, cleanup_collecti @pytest.mark.all @pytest.mark.cli @pytest.mark.deployment_cloud -@pytest.mark.skip( - reason="Marked for insights mode which always has GALAXY_REQUIRE_SIGNATURE_FOR_APPROVAL true" -) def test_publish_and_expect_uncertified_hidden( ansible_config, published, @@ -120,8 +117,6 @@ def test_publish_and_expect_uncertified_hidden( uncertified collection, but not an unspecified version range. """ - # FIXME: AAH-2442 this is not skipping here in CRC stage integration tests - # where GALAXY_REQUIRE_SIGNATURE_FOR_APPROVAL=true if settings.get("GALAXY_REQUIRE_SIGNATURE_FOR_APPROVAL"): pytest.skip("This test needs refactoring to work with signatures required on move.")