chore(gui-test): implement vulture tool to detect dead code and remove those dead code#976
Draft
Asmitapaudel wants to merge 1 commit into
Draft
Conversation
Asmitapaudel
force-pushed
the
chore/vulture-unused-vars
branch
from
July 14, 2026 09:08
ece873e to
8f46c6a
Compare
Asmitapaudel
force-pushed
the
chore/vulture-unused-vars
branch
2 times, most recently
from
July 14, 2026 11:58
2ebb9f4 to
bf65a34
Compare
Contributor
|
@Asmitapaudel let's keep this as it is for now. we will sort out the test code lint setup and rules first and then we can come to this. |
Asmitapaudel
force-pushed
the
chore/vulture-unused-vars
branch
from
July 21, 2026 04:52
bf65a34 to
f2776db
Compare
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.
Part of #553
Vulture is a static code analyzer that finds unused/dead code in Python projects.
Add vulture to the lint dependency group for dead code detection.
Confidence levels:
Using min-confidence = 80 to avoid false positives.
Commands to scan by category:
Since the codebase had minimal dead code after running vulture, all categories (variables, imports, functions, classes) are cleaned up in this single PR instead of splitting across multiple PRs.