summaryrefslogtreecommitdiff
path: root/tests/helpers/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helpers/utils.py')
-rw-r--r--tests/helpers/utils.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/helpers/utils.py b/tests/helpers/utils.py
index 46787391d..64779dfc6 100644
--- a/tests/helpers/utils.py
+++ b/tests/helpers/utils.py
@@ -52,6 +52,9 @@ qt514 = pytest.mark.skipif(
skip_qt511 = pytest.mark.skipif(
qtutils.version_check('5.11'), reason="Needs Qt 5.10 or earlier")
+qt515 = pytest.mark.skipif(
+ not qtutils.version_check('5.15'), reason="Needs Qt 5.15 or newer")
+
class PartialCompareOutcome: