]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cephadm/tests: enable timeout test cases for call function 50244/head
authorJohn Mulligan <jmulligan@redhat.com>
Mon, 27 Feb 2023 19:39:18 +0000 (14:39 -0500)
committerJohn Mulligan <jmulligan@redhat.com>
Tue, 7 Mar 2023 18:56:42 +0000 (13:56 -0500)
Signed-off-by: John Mulligan <jmulligan@redhat.com>
src/cephadm/tests/test_util_funcs.py

index c2f610205b300bd15d7dee0110ec84e08f100495..2c20dfb916b32655ec239e25789bf49b184eadd9 100644 (file)
@@ -639,7 +639,6 @@ def _has_values_somewhere(clog, values, non_zero=True):
             {"timeout": 1},
             None,
             id="long-sleep",
-            marks=pytest.mark.xfail,
         ),
         pytest.param(
             "import time\nfor i in range(100):\n\tprint(i, flush=True); time.sleep(0.01)",
@@ -647,7 +646,6 @@ def _has_values_somewhere(clog, values, non_zero=True):
             {"timeout": 0.5},
             None,
             id="slow-print-timeout",
-            marks=pytest.mark.xfail,
         ),
         # Commands that time out collect no logs, return empty std{out,err} strings
     ],