From d4dfa204d292ae2020a2ea94fe7ec5d241b96a43 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 7 Jun 2021 09:39:37 +0200 Subject: [PATCH] Revert "tests: disable test_mgr_dashboard_is_listening" This reverts commit 2e19d1705efa8ef247eecb540357195d5142da77. A new build of ceph@master including the fix is available so this is not needed anymore. Signed-off-by: Guillaume Abrioux --- tests/functional/tests/mgr/test_mgr.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/functional/tests/mgr/test_mgr.py b/tests/functional/tests/mgr/test_mgr.py index f1a366476..49f28729a 100644 --- a/tests/functional/tests/mgr/test_mgr.py +++ b/tests/functional/tests/mgr/test_mgr.py @@ -21,13 +21,13 @@ class TestMGRs(object): assert s.is_enabled assert s.is_running - # @pytest.mark.dashboard - # @pytest.mark.parametrize('port', [ - # '8443', '9283' - # ]) - # def test_mgr_dashboard_is_listening(self, node, host, setup, port): - # s = host.socket('tcp://%s:%s' % (setup["address"], port)) - # assert s.is_listening + @pytest.mark.dashboard + @pytest.mark.parametrize('port', [ + '8443', '9283' + ]) + def test_mgr_dashboard_is_listening(self, node, host, setup, port): + s = host.socket('tcp://%s:%s' % (setup["address"], port)) + assert s.is_listening def test_mgr_is_up(self, node, host, setup): hostname = node["vars"]["inventory_hostname"]