-
Notifications
You must be signed in to change notification settings - Fork 110
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
Fix argument-spec for siblings
and improve usage synopsis
#5913
Conversation
`None` was declared as supported `action`, but if given, would cause a crash. Synopsis went from ``` Usage: datalad siblings [-h] [-d DATASET] [-s NAME] [--url [URL]] [--pushurl PUSHURL] [-D DESCRIPTION] [--fetch] [--as-common-datasrc NAME] [--publish-depends SIBLINGNAME] [--publish-by-default REFSPEC] [--annex-wanted EXPR] [--annex-required EXPR] [--annex-group EXPR] [--annex-groupwanted EXPR] [--inherit] [--no-annex-info] [-r] [-R LEVELS] [--version] [ACTION] ``` to ``` Usage: datalad siblings [-h] [-d DATASET] [-s NAME] [--url [URL]] [--pushurl PUSHURL] [-D DESCRIPTION] [--fetch] [--as-common-datasrc NAME] [--publish-depends SIBLINGNAME] [--publish-by-default REFSPEC] [--annex-wanted EXPR] [--annex-required EXPR] [--annex-group EXPR] [--annex-groupwanted EXPR] [--inherit] [--no-annex-info] [-r] [-R LEVELS] [--version] [{query|add|remove|configure|enable}] ``` Fixes datalad#5912
Codecov Report
@@ Coverage Diff @@
## maint #5913 +/- ##
===========================================
- Coverage 90.31% 29.54% -60.78%
===========================================
Files 300 297 -3
Lines 42402 42366 -36
===========================================
- Hits 38296 12517 -25779
- Misses 4106 29849 +25743
Continue to review full report at Codecov.
|
Appveyor tests for mac do not start. But there is nothing platform specific about this change. |
Tried (since I had a vague recollection of |
Thx! |
FWIW that allowing |
None
was declared as supportedaction
, but if given, would cause a crash.Synopsis went from
to
Fixes #5912