Only skip because of QTBUG-54419 with WebEngine

This commit is contained in:
Florian Bruhin 2016-09-05 14:12:15 +02:00
parent 141b7c5893
commit cf89204ac3

View File

@ -145,7 +145,9 @@ def pytest_collection_modifyitems(config, items):
'qtwebkit_skip': ('Skipped with QtWebKit', pytest.mark.skipif,
not config.webengine),
'qtwebengine_createWindow': ('Skipped because of QTBUG-54419',
pytest.mark.skipif, not qtbug_54419_fixed)
pytest.mark.skipif,
not qtbug_54419_fixed and
config.webengine)
}
for item in items: