-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add a new method interrupt to send SIGINT to tasks #101
Conversation
Codecov ReportBase: 78.33% // Head: 78.22% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #101 +/- ##
==========================================
- Coverage 78.33% 78.22% -0.11%
==========================================
Files 21 21
Lines 923 923
Branches 145 146 +1
==========================================
- Hits 723 722 -1
- Misses 174 175 +1
Partials 26 26
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
ea15a58
to
ca59f8d
Compare
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.
@karajan1001 please check the pylint warnings on windows (you need to add the ignore case for sigkill on windows)
fe484ae
to
b3017f9
Compare
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.
marking as changes requested after os.kill/os.killpg
discussion
A problem is that |
fix: #100 Required from dvc to stop the checkpoint during running. 1. Add a new method interrupt to send SIGINT to tasks 2. Modify the unit test for this new method. 3. Add `group` option to `send_signal`, `kill`, `terminate`, `interrrupt`
fix: #100
Required from dvc to stop the checkpoint during running.