Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
0bea1c5
Might close https://github.com/spyder-ide/qtpy/issues/394
StSav012 Feb 13, 2023
f3239aa
Rephrase a comment, as @CAM-Gerlach suggested
StSav012 Feb 17, 2023
8ea86ee
Attempt to test the fix for https://github.com/spyder-ide/qtpy/issues…
StSav012 Feb 17, 2023
8ffd2f0
Attempt no. 2 to test the fix for https://github.com/spyder-ide/qtpy/…
StSav012 Feb 17, 2023
83fbfcb
Attempt no. 3 to test the fix for https://github.com/spyder-ide/qtpy/…
StSav012 Feb 17, 2023
81a9612
Attempt no. 4 to test the fix for https://github.com/spyder-ide/qtpy/…
StSav012 Feb 17, 2023
16f619f
Format the docstring as suggested by @CAM-Gerlach
StSav012 Feb 18, 2023
e532db5
Ensure the created window is of sufficient size to point at
StSav012 Feb 18, 2023
c6a2468
Don't wait before moving and clicking the mouse
StSav012 Feb 18, 2023
6c90643
Test run: don't close the window at the end
StSav012 Feb 18, 2023
e90bb1a
Test run: create an instance of `QApplication` before `pytestqt` crashes
StSav012 Feb 18, 2023
966be08
Test run: make `pytestqt` use the Qt API detected by `QtPy`
StSav012 Feb 18, 2023
a1b3059
Revert "Test run: make `pytestqt` use the Qt API detected by `QtPy`"
StSav012 Feb 18, 2023
7562a57
Revert "Test run: create an instance of `QApplication` before `pytest…
StSav012 Feb 18, 2023
24fc073
Don't close the window at the end
StSav012 Feb 18, 2023
0df0983
Merge remote-tracking branch 'origin/issue-394' into issue-394
StSav012 Feb 21, 2023
e0ef0b1
Remove patch that “may be limited to PySide-5.11a1 only”
StSav012 Feb 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Attempt no. 4 to test the fix for #394
  • Loading branch information
StSav012 committed Feb 17, 2023
commit 81a9612c3f3046dfe79cb62c3b0fbec3108c2041
3 changes: 3 additions & 0 deletions qtpy/tests/test_qtgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ def test_enum_access():
@pytest.mark.skipif(
sys.platform.startswith('linux') and not_using_conda(),
reason="Fatal Python error: Aborted on Linux CI when not using conda")
@pytest.mark.skipif(
sys.platform == 'darwin' and sys.version_info[:2] == (3, 7),
reason="Stalls on macOS CI with Python 3.7")
def test_QMouseEvent_pos_functions(qtbot):
"""Test `QMouseEvent.pos` and related functions obsolete in Qt6,
test `QMouseEvent.position` and related functions missing from Qt5"""
Expand Down