From 5d87770513a1bacd5fbd6f34fb4ff07527aafd57 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 2 Mar 2016 08:09:04 +0100 Subject: [PATCH] tests: Allow XPASS for test_installed_package We need to use strict=False here as test_installed_package can XPASS when running frozen tests. --- tests/test_conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_conftest.py b/tests/test_conftest.py index abb377806..4dff7ddce 100644 --- a/tests/test_conftest.py +++ b/tests/test_conftest.py @@ -44,7 +44,8 @@ def test_fail_on_warnings(): warnings.warn('test', PendingDeprecationWarning) -@pytest.mark.xfail(reason="https://github.com/The-Compiler/qutebrowser/issues/1070") +@pytest.mark.xfail(reason="https://github.com/The-Compiler/qutebrowser/issues/1070", + strict=False) def test_installed_package(): """Make sure the tests are running against the installed package.""" print(sys.path)