We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a71eb commit f804220Copy full SHA for f804220
1 file changed
tests/test_flows/test_flow.py
@@ -189,8 +189,10 @@ def test_exiting_flow_exists(self):
189
nb = sklearn.naive_bayes.GaussianNB()
190
flow = openml.flows.sklearn_to_flow(nb)
191
flow.name = 'TEST%s%s' % (sentinel, flow.name)
192
-
+ #publish the flow
193
flow = flow.publish()
194
+ #redownload the flow
195
+ flow = openml.flows.get_flow(flow.flow_id)
196
197
# check if flow exists can find it
198
flow = openml.flows.get_flow(flow.flow_id)
0 commit comments