Skip to content

Commit fdb7af0

Browse files
committed
Update test_core.py
1 parent 16a6fbf commit fdb7af0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_core.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import pandas as pd
99

10+
1011
def test_dataframe_model(qtbot):
1112
# instantiation / setting of dataframe
1213
df = pd.DataFrame({'X': [0, 1, 2], 'Y': ['A', 'B', 'C']})
@@ -76,7 +77,8 @@ def test_dataframe_model(qtbot):
7677
assert model.data(model.index(0, 0), Qt.ItemDataRole.BackgroundRole).alpha() == 128
7778
assert model.data(model.index(2, 0), Qt.ItemDataRole.BackgroundRole).alpha() == 128
7879

79-
@pytest.mark.xfail(reason="This fails with the GitHub Windows runner for some reason.")
80+
81+
@pytest.mark.xfail(reason='This fails with the GitHub Windows runner for some reason.')
8082
def test_path_watcher(qtbot):
8183
parent = core.QObject()
8284
w = core.PathWatcher(parent=parent, paths=[])

0 commit comments

Comments
 (0)