From 1763f9bb5838a1de3465d2703a8e09689175719a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 18 Aug 2016 22:50:57 +0200 Subject: [PATCH] bdd: Mark search/sessions as qtwebengine_todo --- tests/end2end/features/test_search_bdd.py | 3 +++ tests/end2end/features/test_sessions_bdd.py | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/tests/end2end/features/test_search_bdd.py b/tests/end2end/features/test_search_bdd.py index a2f94f569..12e5d9480 100644 --- a/tests/end2end/features/test_search_bdd.py +++ b/tests/end2end/features/test_search_bdd.py @@ -17,6 +17,7 @@ # You should have received a copy of the GNU General Public License # along with qutebrowser. If not, see . +import pytest import pytest_bdd as bdd # pylint: disable=unused-import @@ -24,3 +25,5 @@ from end2end.features.test_yankpaste_bdd import init_fake_clipboard bdd.scenarios('search.feature') + +pytestmark = pytest.mark.qtwebengine_skip("Searched text is not selected...") diff --git a/tests/end2end/features/test_sessions_bdd.py b/tests/end2end/features/test_sessions_bdd.py index 0af29f414..d4eec436c 100644 --- a/tests/end2end/features/test_sessions_bdd.py +++ b/tests/end2end/features/test_sessions_bdd.py @@ -17,5 +17,9 @@ # You should have received a copy of the GNU General Public License # along with qutebrowser. If not, see . +import pytest import pytest_bdd as bdd bdd.scenarios('sessions.feature') + + +pytestmark = pytest.mark.qtwebengine_todo("Sessions are not implemented")