Skip to content
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

distribution.subdatasets -> local.subdatasets #3429

Merged
merged 24 commits into from
May 21, 2019
Merged

Conversation

mih
Copy link
Member

@mih mih commented May 17, 2019

This PR implements the transition of the subdatasets command to the "local" API section #3192 . It aligns arguments, behavior, and result structure with the rest "core.local" API.

Python API breakage is caused by the necessary introduction of positional PATH arguments (like the other commands have) in conjunction with the requirement for uniform argument order.

  • multi path matching with --contains
  • supports path-constrained queries like status/diff/save
  • when invoked on the cmdline with no args, reports only subdatasets underneath curdir
  • result content now aligned with status/diff/save, e.g. revision -> gitshasum (but revision is kept as a duplicate for compatibility)
  • no custom parser for subdatasets anymore
  • no custom parser for .gitmodules anymore
  • no GitPy functionality used anymore
  • move to local/subdatasets.py

Copy link
Member

@yarikoptic yarikoptic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

left suggestion + for supporting submods with '.' in the name

datalad/distribution/subdatasets.py Outdated Show resolved Hide resolved
datalad/distribution/subdatasets.py Outdated Show resolved Hide resolved
datalad/distribution/tests/test_subdataset.py Show resolved Hide resolved
@codecov
Copy link

codecov bot commented May 18, 2019

Codecov Report

Merging #3429 into master will decrease coverage by 54.96%.
The diff coverage is 22.44%.

Impacted file tree graph

@@             Coverage Diff             @@
##           master    #3429       +/-   ##
===========================================
- Coverage    91.3%   36.33%   -54.97%     
===========================================
  Files         265      263        -2     
  Lines       34488    34460       -28     
===========================================
- Hits        31488    12520    -18968     
- Misses       3000    21940    +18940
Impacted Files Coverage Δ
datalad/distribution/tests/test_subdataset.py 0% <0%> (-100%) ⬇️
datalad/distribution/subdatasets.py 26.82% <22.91%> (-67.91%) ⬇️
datalad/customremotes/tests/__init__.py 0% <0%> (-100%) ⬇️
datalad/metadata/extractors/__init__.py 0% <0%> (-100%) ⬇️
datalad/distribution/tests/test_clone.py 0% <0%> (-100%) ⬇️
datalad/interface/tests/test_annotate_paths.py 0% <0%> (-100%) ⬇️
datalad/cmdline/tests/__init__.py 0% <0%> (-100%) ⬇️
datalad/metadata/extractors/tests/__init__.py 0% <0%> (-100%) ⬇️
datalad/interface/tests/test_download_url.py 0% <0%> (-100%) ⬇️
datalad/plugin/tests/test_export_archive.py 0% <0%> (-100%) ⬇️
... and 193 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update b59bcb0...2f7f554. Read the comment docs.

@codecov
Copy link

codecov bot commented May 18, 2019

Codecov Report

Merging #3429 into master will increase coverage by 0.08%.
The diff coverage is 94.37%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #3429      +/-   ##
==========================================
+ Coverage    91.2%   91.28%   +0.08%     
==========================================
  Files         265      267       +2     
  Lines       34489    34486       -3     
==========================================
+ Hits        31457    31482      +25     
+ Misses       3032     3004      -28
Impacted Files Coverage Δ
datalad/interface/__init__.py 100% <ø> (ø) ⬆️
datalad/support/gitrepo.py 90.18% <100%> (+0.21%) ⬆️
datalad/distribution/subdatasets.py 100% <100%> (+5.26%) ⬆️
datalad/local/tests/test_subdataset.py 100% <100%> (ø)
datalad/local/__init__.py 100% <100%> (ø)
datalad/plugin/tests/test_addurls.py 100% <100%> (ø) ⬆️
datalad/local/subdatasets.py 93.12% <93.12%> (ø)
datalad/downloaders/http.py 83.73% <0%> (-2.78%) ⬇️
datalad/utils.py 87.28% <0%> (-0.11%) ⬇️
... and 7 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update cddb04c...b9a6ad2. Read the comment docs.

@mih mih changed the title [WIP] Some love for subdatasets distribution.subdatasets -> local.subdatasets May 19, 2019
@mih
Copy link
Member Author

mih commented May 19, 2019

This is now ready for review.

@mih mih requested review from kyleam and yarikoptic May 19, 2019 18:06
@mih mih added this to the Release 0.12.0 milestone May 19, 2019
@mih mih mentioned this pull request May 20, 2019
5 tasks
# no constraints given -> query subdatasets under curdir
if path is None and dataset is None:
path = os.curdir
paths = [rev_resolve_path(p, dataset) for p in assure_list(path)] \
Copy link
Member Author

@mih mih May 20, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could be simplified once #3435 is merged, but no requirement to get it done before this PR can be merged.

@mih
Copy link
Member Author

mih commented May 20, 2019

Remaining test failure is the already-known neuroimaging extension test run failure, due to a missing config procedure.

Copy link
Contributor

@kyleam kyleam left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The command-line subdirectory behavior isn't working as intended. Otherwise looks good to me.

if parser is not None:
# release parser lock manually, auto-cleanup is not reliable in PY3
parser.release()
# Import command class to ease 3rd-party transitions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we issue a warning (probably with warnings.warn() rather than logging.warn()) when this module is imported?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think it is needed. Even in our own code base we did not import it directly.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK.

datalad/local/subdatasets.py Outdated Show resolved Hide resolved
datalad/local/subdatasets.py Show resolved Hide resolved
@yarikoptic
Copy link
Member

I did upload fresh -neuroimaging with the fix, and restarted one sample run which was failing -- https://travis-ci.org/datalad/datalad/builds/534685969?utm_source=github_status&utm_medium=notification -- all green now back then a few commits back before ci skips

@mih
Copy link
Member Author

mih commented May 21, 2019

All green. @yarikoptic didnt update his review, but I think I successfully addressed his requests.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants