Skip to content

Commit

Permalink
PR: Skip QtPositioning tests on Conda Qt >=6.4.3 where its not includ…
Browse files Browse the repository at this point in the history
…ed (#414)
  • Loading branch information
dalthviz authored Mar 20, 2023
2 parents a112bcf + a2da9cf commit c67b149
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit c67b149

Please sign in to comment.