Skip to content

Commit

Permalink
Testing: Skip test_qt3danimation in Python 2 and PySide2
Browse files Browse the repository at this point in the history
This is failing due to a bug in Shiboken
  • Loading branch information
ccordoba12 committed Jul 14, 2019
1 parent af42d93 commit 9b00bf2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qtpy/tests/test_qt3danimation.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

import pytest
from qtpy import PYQT5, PYSIDE2
from qtpy.py3compat import PY2

@pytest.mark.skipif(not (PYQT5 or PYSIDE2), reason="Only available in Qt5 bindings")
@pytest.mark.skipif(not (PYQT5 or PYSIDE2) or (PY2 and PYSIDE2),
reason="Only available in Qt5 bindings and fails on Python 2 and PySide2")
def test_qt3danimation():
"""Test the qtpy.Qt3DAnimation namespace"""
Qt3DAnimation = pytest.importorskip("qtpy.Qt3DAnimation")
Expand Down

0 comments on commit 9b00bf2

Please sign in to comment.