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 be9dd3d commit b4e052dCopy full SHA for b4e052d
1 file changed
tests/test_flows/test_flow.py
@@ -198,6 +198,7 @@ def test_sklearn_to_upload_to_flow(self):
198
estimator=model, param_distributions=parameter_grid, cv=cv)
199
rs.fit(X, y)
200
flow = openml.flows.sklearn_to_flow(rs)
201
+ flow.tags.extend(['openml-python', 'unittest'])
202
203
# Add the sentinel to all name strings in all subflows. Adds it to
204
# name to make it easier in the web gui to see that the flow is only
@@ -253,5 +254,6 @@ def test_sklearn_to_upload_to_flow(self):
253
254
% sentinel
255
256
self.assertEqual(new_flow.name, fixture_name)
-
257
+ self.assertTrue('openml-python' in new_flow.tags)
258
+ self.assertTrue('unittest' in new_flow.tags)
259
new_flow.model.fit(X, y)
0 commit comments