Skip to content

Commit

Permalink
Apply missing suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz authored Oct 21, 2021
1 parent 6ac4720 commit ec04835
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion qtpy/tests/test_qtcore.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_DateTime_toPython():


@pytest.mark.skipif(PYSIDE2 or PYQT6,
reason="Doesn't seem to be present on PySide2")
reason="Doesn't seem to be present on PySide2 and PyQt6")
def test_QtCore_SignalInstance():
class ClassWithSignal(QtCore.QObject):
signal = QtCore.Signal()
Expand Down
3 changes: 1 addition & 2 deletions qtpy/tests/test_qtremoteobjects.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import pytest
from qtpy import PYSIDE2, PYSIDE6, PYQT5, PYQT6

@pytest.mark.skipif(True, reason="Not available in CI")
def test_qtremoteobjects():
"""Test the qtpy.QtRemoteObjects namespace"""
from qtpy import QtRemoteObjects
QtRemoteObjects = pytest.importorskip("qtpy.QtRemoteObjects")

assert QtRemoteObjects.QRemoteObjectAbstractPersistedStore is not None
assert QtRemoteObjects.QRemoteObjectDynamicReplica is not None
Expand Down

0 comments on commit ec04835

Please sign in to comment.