Skip to content

Commit 4ce228c

Browse files
committed
pulling modpath test out for all OS because always timing out
1 parent 929c2d5 commit 4ce228c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_notebooks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# platforms
2424
# Notebook : (platforms,), reason
2525
skip_notebooks = {
26-
"10_modpath_particle_tracking-demo.ipynb" : [("darwin"), "transient timeout"]
26+
"10_modpath_particle_tracking-demo.ipynb" : [("darwin","linux","windows"), "transient timeout"]
2727
}
2828

2929
def included_notebooks():
@@ -41,7 +41,7 @@ def included_notebooks():
4141
param_input = pytest.param(
4242
f, marks=pytest.mark.xfail(reason=xfail_notebooks[f.name]))
4343
elif f.name in skip_notebooks and \
44-
platform.system().lower() in skip_notebooks[f.name][0]:
44+
platform.system().lower() in ''.join(skip_notebooks[f.name][0]):
4545
param_input = pytest.param(
4646
f, marks=pytest.mark.skip(reason=skip_notebooks[f.name][-1])
4747
)

0 commit comments

Comments
 (0)