-
Notifications
You must be signed in to change notification settings - Fork 156
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 dedicated exit code for when we find dead code #319
Conversation
This addresses issue jendrikseipp#308 by introducing a new class vulture.utils.ExitCode, which will encode the different exit codes vulture can return.
This addresses issue jendrikseipp#308 by introducing a new class vulture.utils.ExitCode, which will encode the different exit codes vulture can return.
Codecov Report
@@ Coverage Diff @@
## main #319 +/- ##
==========================================
+ Coverage 98.94% 98.96% +0.01%
==========================================
Files 21 21
Lines 665 676 +11
==========================================
+ Hits 658 669 +11
Misses 7 7
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
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.
Thanks for the PR! I like your enum refactoring! Once you've taken care of my small nitpicks, this can be merged.
Thanks! |
Description
This introduces a new class vulture.utils.ExitCode, which will encode the different exit codes vulture can return.
Related Issue
#308
Checklist:
tox -e fix-style
to format my code and checked the result withtox -e style
.