You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TST: Avoid attempting to create test data directory in notebook GHA
Avoid attempting to create test data directory in notebook GHA workflow
file: create testing data directory before starting to download data.
The step where the data from `OpenNeuro` was being downloaded was
effectively creating the test data directory and, thus, attempting to
create the directory was failinng in the next step, where the data from
OSF was bing downloaded, and which included creating the directory.
Fixes:
```
Run mkdir ${TEST_DATA_HOME}
(...)
mkdir: cannot create directory ‘/home/runner/nifreeze-tests/’: File exists
```
raised for example at:
https://github.com/nipreps/nifreeze/actions/runs/15097105297/job/42433228274?pr=117#step:11:19
Inadvertently introduced in commit c170c40.
0 commit comments