Skip to content

Commit

Permalink
Skip busy test for pyside6
Browse files Browse the repository at this point in the history
  • Loading branch information
zkovari committed Sep 30, 2022
1 parent 1c8d099 commit e451797
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_basic.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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():
Expand Down

0 comments on commit e451797

Please sign in to comment.