summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-09 18:42:19 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-03-09 18:42:19 +0100
commit0a38fff4c675b384289728a4d45f9c1fe1f9d4fc (patch)
treee1563004fef6337bf685f6e4e7b98be788507bc8 /tests/conftest.py
parentfb4a56318c8159551d54f7098324ea908275854f (diff)
downloadqutebrowser-0a38fff4c675b384289728a4d45f9c1fe1f9d4fc.tar.gz
qutebrowser-0a38fff4c675b384289728a4d45f9c1fe1f9d4fc.zip
Simplify test_greasemonkey via js_tester fixture
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index ea7381a2f..ee945ac4c 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -109,12 +109,6 @@ def _apply_platform_markers(config, item):
pytest.mark.skipif,
sys.getfilesystemencoding() == 'ascii',
"Skipped because of ASCII locale"),
-
- ('qtwebkit6021_xfail',
- pytest.mark.xfail,
- version.qWebKitVersion and # type: ignore[unreachable]
- version.qWebKitVersion() == '602.1',
- "Broken on WebKit 602.1")
]
for searched_marker, new_marker_kind, condition, default_reason in markers: