From c37c501b250aca2bd2ca52254edc47611da5ebd9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 18 Aug 2016 13:16:52 +0200 Subject: [PATCH] Mark download BDD tests as TODO for QtWebEngine --- tests/end2end/features/test_downloads_bdd.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/end2end/features/test_downloads_bdd.py b/tests/end2end/features/test_downloads_bdd.py index 1c0e2379c..66b922c50 100644 --- a/tests/end2end/features/test_downloads_bdd.py +++ b/tests/end2end/features/test_downloads_bdd.py @@ -21,10 +21,14 @@ import os import sys import shlex +import pytest import pytest_bdd as bdd bdd.scenarios('downloads.feature') +pytestmark = pytest.mark.qtwebengine_todo("Downloads not implemented yet") + + @bdd.given("I set up a temporary download dir") def temporary_download_dir(quteproc, tmpdir): quteproc.set_setting('storage', 'prompt-download-directory', 'false')