From 17b5ccde0ecba61a9744b3de0324591ae25f9599 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 23 Nov 2015 16:25:03 +0100 Subject: [PATCH] tests: Ignore "SelectionRequest too old" message. See #1124. --- tests/integration/features/test_yankpaste.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integration/features/test_yankpaste.py b/tests/integration/features/test_yankpaste.py index d8091f277..66375c94d 100644 --- a/tests/integration/features/test_yankpaste.py +++ b/tests/integration/features/test_yankpaste.py @@ -26,6 +26,9 @@ import pytest_bdd as bdd bdd.scenarios('yankpaste.feature') +# https://github.com/The-Compiler/qutebrowser/issues/1124#issuecomment-158073581 +pytestmark = pytest.mark.qt_log_ignore( + '^QXcbClipboard: SelectionRequest too old', extend=True) @pytest.fixture(autouse=True) def skip_with_broken_clipboard(qapp):