[ENH] V1 -> V2 Migration - Flows (module)#1609
Open
Omswastik-11 wants to merge 232 commits intoopenml:mainfrom
Open
[ENH] V1 -> V2 Migration - Flows (module)#1609Omswastik-11 wants to merge 232 commits intoopenml:mainfrom
Omswastik-11 wants to merge 232 commits intoopenml:mainfrom
Conversation
…into issue1564
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1609 +/- ##
==========================================
+ Coverage 53.09% 54.04% +0.94%
==========================================
Files 37 65 +28
Lines 4362 5120 +758
==========================================
+ Hits 2316 2767 +451
- Misses 2046 2353 +307 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This reverts commit 7ac1672.
geetu040
suggested changes
Feb 25, 2026
Collaborator
geetu040
left a comment
There was a problem hiding this comment.
please sync with base PR and update with these comments #1576 (comment)
…-11/openml-python into flow-migration-stacked
geetu040
suggested changes
Feb 26, 2026
| 9, | ||
| ]: | ||
| flow_xml = _perform_api_call("flow/%d" % flow_id, request_method="get") | ||
| flow_xml = openml.config.get_backend().http_client.get(f"flow/{flow_id}").text |
Collaborator
There was a problem hiding this comment.
I have updated the PR to make this work, please sync
Suggested change
| flow_xml = openml.config.get_backend().http_client.get(f"flow/{flow_id}").text | |
| flow_xml = openml._backend.http_client.get(f"flow/{flow_id}").text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #1601
added a
Createmethod inFlowAPIfor publishing flow but not refactored with oldpublish. (Needs discussion on this)Added tests using
fake_methodsso that we can test without localV2server . I have tested theFlowsV2methods (getandexists) anddeleteandlistwere not implemented inV2server so I skipped them .