From e45179778fa42bf25faf804ff73b51eb2d08d73c Mon Sep 17 00:00:00 2001 From: zkovari Date: Fri, 30 Sep 2022 11:26:44 +0200 Subject: [PATCH] Skip busy test for pyside6 --- test/test_basic.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_basic.py b/test/test_basic.py index 89514bd..28dae70 100644 --- a/test/test_basic.py +++ b/test/test_basic.py @@ -1,3 +1,6 @@ +import sys + +import pytest from qtpy.QtWidgets import QLabel, QWidget, QPushButton, QApplication, QToolButton, QMessageBox from qthandy import translucent, hbox, retain_when_hidden, spacer, transparent, busy, btn_popup, ask_confirmation @@ -70,6 +73,7 @@ def test_transparent_label(qtbot): transparent(lbl) +@pytest.mark.skipif('PySide6' in sys.modules, reason="Cannot set override cursor with PySide6") def test_busy(qtbot): @busy def busy_func():