File: Skip-tests-requiring-a-window-manager.patch

package info (click to toggle)
pytest-qt 3.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 624 kB
  • sloc: python: 3,773; makefile: 145
file content (19 lines) | stat: -rw-r--r-- 548 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
From: Ghislain Antony Vaillant <ghisvail@gmail.com>
Date: Wed, 8 Feb 2017 15:48:08 +0000
Subject: Skip tests requiring a window manager

---
 tests/test_basics.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/tests/test_basics.py
+++ b/tests/test_basics.py
@@ -82,7 +82,7 @@
     qtbot.stopForInteraction()
 
 
-@pytest.mark.parametrize("show", [True, False])
+@pytest.mark.parametrize('show', [False])
 @pytest.mark.parametrize("method_name", ["waitExposed", "waitActive"])
 def test_wait_window(show, method_name, qtbot):
     """