From 07577b67a58e45fccc9bb8a94d6aa41b62787031 Mon Sep 17 00:00:00 2001 From: Thomas Cokelaer Date: Wed, 28 Dec 2022 23:54:50 +0100 Subject: [PATCH] set xfail on slow test --- test/webservices/test_panther.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/webservices/test_panther.py b/test/webservices/test_panther.py index 71a6268..900c751 100644 --- a/test/webservices/test_panther.py +++ b/test/webservices/test_panther.py @@ -49,6 +49,8 @@ def test_homolog_position(): assert res["unmapped"] +@pytest.mark.xfail(reason="too slow", method="thread") +@pytest.mark.timeout(60) def test_supported_families(): res = p.get_supported_families() res = p.get_supported_families(progress=False)