From 2a54fef09df890d6a8bcc975b95a2f8a527dbbde Mon Sep 17 00:00:00 2001 From: Zac-HD Date: Sun, 17 Mar 2019 16:52:40 +1100 Subject: [PATCH] Ingore unknown marks in tests --- testing/test_mark.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/test_mark.py b/testing/test_mark.py index e71013978a5..b148ccc9500 100644 --- a/testing/test_mark.py +++ b/testing/test_mark.py @@ -22,6 +22,7 @@ ignore_markinfo = pytest.mark.filterwarnings( "ignore:MarkInfo objects:pytest.RemovedInPytest4Warning" ) +pytestmark = pytest.mark.filterwarnings("ignore:Unknown mark") class TestMark(object):