import pytest from qtpy import PYQT5, PYSIDE2 from qtpy.tests.utils import pytest_importorskip @pytest.mark.skipif(PYQT5 or PYSIDE2, reason="Only available in Qt6 bindings") def test_qtwebenginequick(): """Test the qtpy.QtWebEngineQuick namespace""" QtWebEngineQuick = pytest_importorskip("qtpy.QtWebEngineQuick") assert QtWebEngineQuick.QtWebEngineQuick is not None assert QtWebEngineQuick.QQuickWebEngineProfile is not None