Skip broken completion tests

This skips test_completer and test_models - we'll reintroduce them when merging
the new completion.
This commit is contained in:
Florian Bruhin 2017-07-04 14:49:24 +02:00
parent ff05560047
commit 7dd5e4b2e6
2 changed files with 6 additions and 1 deletions

View File

@ -30,6 +30,9 @@ from qutebrowser.utils import usertypes
from qutebrowser.commands import command, cmdutils from qutebrowser.commands import command, cmdutils
pytestmark = pytest.mark.skip("FIXME:conf reintroduce after new completion is in")
class FakeCompletionModel(QStandardItemModel): class FakeCompletionModel(QStandardItemModel):
"""Stub for a completion model.""" """Stub for a completion model."""

View File

@ -29,7 +29,9 @@ from PyQt5.QtWidgets import QTreeView
from qutebrowser.completion.models import (miscmodels, urlmodel, configmodel, from qutebrowser.completion.models import (miscmodels, urlmodel, configmodel,
sortfilter) sortfilter)
from qutebrowser.browser import history from qutebrowser.browser import history
from qutebrowser.config import sections, value
pytestmark = pytest.mark.skip("FIXME:conf reintroduce after new completion is in")
def _check_completions(model, expected): def _check_completions(model, expected):