-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENH: Add support to return the job after submitting a run #952
Conversation
Co-authored-by: Fernando Pérez-García <fepegar@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good - and well done for also mastering the test suite!
Co-authored-by: Anton Schwaighofer <antonsc@microsoft.com>
Co-authored-by: Anton Schwaighofer <antonsc@microsoft.com>
Co-authored-by: Anton Schwaighofer <antonsc@microsoft.com>
for more information, see https://pre-commit.ci
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Currently when calling
submit_to_azure_if_needed
withsubmit_to_azureml=True
, python is exited after the job is submitted. This PR adds an optionexit_on_completion
to control whether this happens. Ifexit_on_completion
isFalse
then the submittedRun
/Job
objects are returned.