Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Skip QtPositioning tests on Conda Qt >=6.4.3 where its not included #414

Merged
merged 1 commit into from
Mar 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion qtpy/tests/test_qtpositioning.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import pytest
from qtpy import PYQT5, PYSIDE2

from qtpy import QT6
from qtpy.tests.utils import using_conda

@pytest.mark.skipif(
QT6 and using_conda(),
reason="QPositioning bindings not included in Conda qt-main >= 6.4.3.",
)
def test_qtpositioning():
"""Test the qtpy.QtPositioning namespace"""
from qtpy import QtPositioning
Expand Down