summaryrefslogtreecommitdiff
path: root/tests/helpers
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-11-03 14:00:36 +0100
committerFlorian Bruhin <me@the-compiler.org>2020-11-04 18:30:04 +0100
commit160831c5bd52a158456abb48d8504a044a02e8f2 (patch)
treeb8c73915a598be8fa61ce71ceb4f9cf2a664c4d6 /tests/helpers
parent5e79574f70cca3fbe8d923731d885a9134829959 (diff)
downloadqutebrowser-160831c5bd52a158456abb48d8504a044a02e8f2.tar.gz
qutebrowser-160831c5bd52a158456abb48d8504a044a02e8f2.zip
old qt: Remove conditional and old tests
Diffstat (limited to 'tests/helpers')
-rw-r--r--tests/helpers/utils.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/helpers/utils.py b/tests/helpers/utils.py
index ac0506856..97ac260fc 100644
--- a/tests/helpers/utils.py
+++ b/tests/helpers/utils.py
@@ -41,16 +41,8 @@ from qutebrowser.utils import qtutils, log
ON_CI = 'CI' in os.environ
-qt58 = pytest.mark.skipif(
- qtutils.version_check('5.9'), reason="Needs Qt 5.8 or earlier")
-qt59 = pytest.mark.skipif(
- not qtutils.version_check('5.9'), reason="Needs Qt 5.9 or newer")
-qt510 = pytest.mark.skipif(
- not qtutils.version_check('5.10'), reason="Needs Qt 5.10 or newer")
qt514 = pytest.mark.skipif(
not qtutils.version_check('5.14'), reason="Needs Qt 5.14 or newer")
-skip_qt511 = pytest.mark.skipif(
- qtutils.version_check('5.11'), reason="Needs Qt 5.10 or earlier")
class PartialCompareOutcome: