We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7db3580 commit bf12348Copy full SHA for bf12348
plotpy/tests/unit/test_manipulate_selection.py
@@ -1,5 +1,6 @@
1
from __future__ import annotations
2
3
+import os
4
from typing import TYPE_CHECKING, Callable, TypeVar
5
6
import numpy as np
@@ -270,6 +271,7 @@ def test_select_all_items():
270
271
exec_dialog(win)
272
273
274
+@pytest.mark.skipif(os.name != "nt", reason="Only tested on Windows.")
275
def test_rotate_with_mouse():
276
"""Test rotating an image item with the mouse."""
277
with qt_app_context(exec_loop=False) as qapp:
@@ -325,6 +327,7 @@ def test_rectangular_selection():
325
327
326
328
329
330
331
@pytest.mark.parametrize(
332
"mouse_path, rotation",
333
[
0 commit comments