Revert "tests: disable test_mgr_dashboard_is_listening"

This reverts commit 2e19d1705e.

A new build of ceph@master including the fix is available so
this is not needed anymore.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
pull/6573/head
Guillaume Abrioux 2021-06-07 09:39:37 +02:00
parent 2e19d1705e
commit d4dfa204d2
1 changed files with 7 additions and 7 deletions

View File

@ -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"]