-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
[symilar] Fix the short form options that weren't being processed properly #9709
Conversation
This comment has been minimized.
This comment has been minimized.
c45401f
to
b310d3f
Compare
Codecov ReportAll modified and coverable lines are covered by tests β
Additional details and impacted files@@ Coverage Diff @@
## main #9709 +/- ##
=======================================
Coverage 95.84% 95.85%
=======================================
Files 174 174
Lines 18865 18873 +8
=======================================
+ Hits 18082 18090 +8
Misses 783 783
|
π€ According to the primer, this change has no effect on the checked open source code. π€π This comment was generated for commit e798aca |
@@ -497,3 +497,32 @@ def test_set_duplicate_lines_to_zero() -> None: | |||
similar.Run(["--duplicates=0", SIMILAR1, SIMILAR2]) | |||
assert ex.value.code == 0 | |||
assert output.getvalue() == "" | |||
|
|||
|
|||
@pytest.mark.parametrize("v", ["d"]) |
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.
This seems unnecessary?
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.
Yes, but with argparse we'll be able to do both again.
Type of Changes
Description
Closes #9343, follow-up to migrate to a more "2010" way of doing things in #9710