Skip to content

Commit fc80ccd

Browse files
committed
test: fix bugs
bugs in testing framework caused tests to fail, fix this
1 parent 57a4343 commit fc80ccd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test_gui.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,11 @@ def test_run_workflow(launch, example):
9797
launch.run()
9898

9999
## Select experiments to process
100-
launch.multiselect[0].select(example)
100+
for e in example:
101+
launch.multiselect[0].select(e)
102+
103+
launch.run()
104+
assert not launch.exception
101105

102106
# Press the "Run Workflow" button
103107
launch.button[1].click().run(timeout=60)

0 commit comments

Comments
 (0)