tests: Allow XPASS for test_installed_package

We need to use strict=False here as test_installed_package can XPASS when
running frozen tests.
This commit is contained in:
Florian Bruhin 2016-03-02 08:09:04 +01:00
parent 38ac95d907
commit 5d87770513

View File

@ -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)