File tree 1 file changed +4
-9
lines changed
1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,11 @@ jobs:
26
26
rm pydra-tasks-template.tar.gz
27
27
mv pydra-tasks-template-${LATEST#v} pydra-tasks-template
28
28
tar czf pydra-tasks-template.tar.gz pydra-tasks-template
29
- echo $PWD
30
- ls
31
29
32
30
- uses : actions/upload-artifact@v4
33
31
with :
34
32
name : tasks-template
35
- path : / pydra-tasks-template.tar.gz
33
+ path : pydra-tasks-template.tar.gz
36
34
37
35
test :
38
36
needs : [download-task-template]
@@ -54,13 +52,10 @@ jobs:
54
52
uses : actions/download-artifact@v4
55
53
with :
56
54
name : tasks-template
57
- path : /pydra-tasks-template.tar.gz
55
+ path : .
58
56
59
57
- name : Extract the pydra-tasks-template
60
- run : |
61
- pushd /
62
- tar xzf pydra-tasks-template.tar.gz
63
- popd
58
+ run : tar xzf pydra-tasks-template.tar.gz
64
59
65
60
- name : Unset header
66
61
# checkout@v2 adds a header that makes branch protection report errors
99
94
100
95
- name : Pytest
101
96
run : >-
102
- NIPYPE2PYDRA_PYDRA_TASK_TEMPLATE=/pydra-tasks-template
97
+ NIPYPE2PYDRA_PYDRA_TASK_TEMPLATE=$PWD /pydra-tasks-template
103
98
pytest -vvs --cov nipype2pydra --cov-config .coveragerc --cov-report xml
104
99
105
100
- name : Upload coverage to Codecov
You can’t perform that action at this time.
0 commit comments