Skip to content

Commit

Permalink
CI #99
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Oct 5, 2023
1 parent 67e2796 commit 8368254
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions gemviz/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,17 @@ def test_getUiFileName(fname, uiname):
assert utils.getUiFileName(fname) == uiname


def test_widget(qtbot):
def test_widget1(qtbot):
"""Test a simple Qt widget."""
widget = QtWidgets.QWidget(None)
# qtbot.addWidget(widget)


def test_widget2(qtbot):
"""Test a simple Qt widget."""
widget = QtWidgets.QWidget(None)
qtbot.addWidget(widget)
widget.show()
# widget.show()


@pytest.mark.parametrize(
Expand Down

0 comments on commit 8368254

Please sign in to comment.