Yaroslav Halchenko
Yaroslav Halchenko
Initially instigated/discussed in https://github.com/datalad/datalad-container/pull/55#discussion_r228609020 , in some situations we might like to have our "own" `copyfile` which performs similarly to git-annex internal copy using `--reflink=auto` so the `copy` takes advantage...
the use case is to take advantage of the reckless ephemeral mode on a hierarchy of datasets which came from remote places. But running smth like `datalad get -J 4...
Came up for HCP .spec files use case -- inputs/outputs might already be specified in the .spec file. Giving that .spec to wb_command for actual transformation. The question -- how...
introduced in 793d8b52aac4316529e7ccb3ba3841ca6220fbec (2016) but actual use of the env var `DATALAD_TESTS_USECASSETTE` was removed in ecd4577753d9e82cdb097d35368eadcf79e24e21 in 2022 . this relates somewhat to our attempts to disable vcrpy while troubleshooting...
when tests run first time -- first 3 succeed and 4th fails and we make a VCR tape. ```shell ❯ DATALAD_TESTS_CREDENTIALS=system python -m pytest -s -v datalad/downloaders/tests/test_s3.py::test_s3_download_basic ================================================================================================ test session...
I guess they changed how authentication is done (again) so our tests (if ran with S3 credentials available, but may be those got outdated in my case ...) - they...
see e.g. https://github.com/neuronets/trained-models/issues/48#issuecomment-1629240319 where users get confused with error from outdated `git` execution. May be we should do such a check in GitRunner upon exception happening - check minimal git...
#### What is the problem? A common scenario for creating a derived dataset is to use a local clone (with data, possibly in some reckless clone shape) of a publicly...
Recently git-annex 10.20230626 added `--json` to a lot of interfaces, probably covering most if not all needs for commands DataLad uses. That would be great since handling non-serialized output has...
```shell $> p=/tmp/testds; rm -rf $p; datalad create $p; cd $p; datalad create -d . subm1 && datalad save && git mv subm1 subm1-moved && datalad create -d . subm1...