QtWebEngine: Don't bother running caret.feature

This commit is contained in:
Florian Bruhin 2016-08-18 18:26:31 +02:00
parent 001e839ca9
commit ab4e442602
2 changed files with 4 additions and 2 deletions

View File

@ -52,7 +52,8 @@ def pytest_collection_modifyitems(config, items):
text = '{}: {}'.format(prefix, marker.args[0])
else:
text = prefix
item.add_marker(pytest_mark(webengine, reason=text))
item.add_marker(pytest_mark(webengine, reason=text,
**marker.kwargs))
@pytest.hookimpl(hookwrapper=True)

View File

@ -24,7 +24,8 @@ import pytest_bdd as bdd
from end2end.features.test_yankpaste_bdd import init_fake_clipboard
pytestmark = pytest.mark.qtwebengine_todo("Caret mode is not implemented")
pytestmark = pytest.mark.qtwebengine_todo("Caret mode is not implemented",
run=False)
bdd.scenarios('caret.feature')