File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -33,24 +33,29 @@ jobs:
33
33
python-${{ matrix.python-version }}-
34
34
- name : Install DataLad
35
35
run : |
36
- $CONDA/bin/conda install -c conda-forge git-annex datalad pip codecov
37
- $CONDA/bin/pip install datalad-osf
36
+ $CONDA/bin/conda install -c conda-forge git-annex datalad pip codecov pytest
37
+ $CONDA/bin/python -m pip install datalad-osf
38
+ # $CONDA/bin/pip install git+https://github.com/Lykos153/AnnexRemote.git
38
39
39
40
- uses : actions/cache@v2
40
41
with :
41
42
path : ${{ env.TEST_DATA_HOME }}
42
43
key : data-cache-v1
43
44
restore-keys : |
44
45
data-cache-
46
+
45
47
- name : Install test data
48
+ shell : bash
49
+ env :
50
+ OSF_TOKEN : ${{ secrets.OSF_AUTH_TOKEN }}
46
51
run : |
47
52
export PATH=$CONDA/bin:$PATH
48
53
mkdir -p /home/runner/testdata
49
54
cd /home/runner/testdata
50
55
51
- datalad install -r https://github.com/nipreps-data/nitransforms-tests.git
52
- datalad update -r --merge -d nitransforms-tests/
53
- datalad get -r -d nitransforms-tests/
56
+ $CONDA/bin/ datalad install https://github.com/nipreps-data/nitransforms-tests.git
57
+ $CONDA/bin/ datalad update --merge -d nitransforms-tests/
58
+ $CONDA/bin/ datalad get -d nitransforms-tests/
54
59
55
60
- uses : actions/checkout@v2
56
61
- name : Install minimal dependencies
You can’t perform that action at this time.
0 commit comments