From f0cc56c8a15441da90940f0add4a477b8266e095 Mon Sep 17 00:00:00 2001 From: karlch Date: Sun, 14 Jul 2024 09:36:04 +0200 Subject: [PATCH] Mark integration/test_app as xfail Quick workaround as the test fails for unknown reasons under PyQt 5.15 from time-to-time. --- tests/integration/test_app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/test_app.py b/tests/integration/test_app.py index 58dd039d..11e18a68 100644 --- a/tests/integration/test_app.py +++ b/tests/integration/test_app.py @@ -9,6 +9,7 @@ import pytest import vimiv.app +from vimiv import qt from vimiv.utils import asyncrun @@ -18,6 +19,7 @@ def test_load_icon(qtbot): assert not icon.isNull() +@pytest.mark.xfail(qt.USE_PYQT5, reason="flaky under PyQt 5.15.10") def test_wait_for_running_processes(mocker): """Ensure any running threads are completed before the app exits."""