summaryrefslogtreecommitdiff
path: root/tests/test_conftest.py
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2016-03-02 08:09:04 +0100
committerFlorian Bruhin <git@the-compiler.org>2016-03-02 08:09:04 +0100
commit5d87770513a1bacd5fbd6f34fb4ff07527aafd57 (patch)
treeaab612bd11f44ce54ec50b458b9f6b5466f05d34 /tests/test_conftest.py
parent38ac95d907546dc8ddfb0c7f0d9e9b3fbde12b47 (diff)
downloadqutebrowser-5d87770513a1bacd5fbd6f34fb4ff07527aafd57.tar.gz
qutebrowser-5d87770513a1bacd5fbd6f34fb4ff07527aafd57.zip
tests: Allow XPASS for test_installed_package
We need to use strict=False here as test_installed_package can XPASS when running frozen tests.
Diffstat (limited to 'tests/test_conftest.py')
-rw-r--r--tests/test_conftest.py3
1 files changed, 2 insertions, 1 deletions
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)