File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,8 @@ jobs:
137
137
no_output_timeout : 2h
138
138
command : |
139
139
mkdir -p /tmp/tests/{artifacts,summaries}
140
- docker run -u $( id -u ) -it --rm -w /src/nitransforms \
140
+ docker run -u $( id -u ) -it --rm \
141
+ -w /src/nitransforms -v $PWD:/src/nitransforms \
141
142
-v /tmp/data/nitransforms-tests:/data -e TEST_DATA_HOME=/data \
142
143
-e COVERAGE_FILE=/tmp/summaries/.pytest.coverage \
143
144
-v /tmp/fslicense/license.txt:/opt/freesurfer/license.txt:ro \
@@ -176,7 +177,7 @@ jobs:
176
177
command : |
177
178
python3 -m venv /tmp/buildenv
178
179
source /tmp/buildenv/bin/activate
179
- python3 -m pip install "setuptools >= 45.0" wheel "setuptools_scm[toml] >= 6.2" \
180
+ python3 -m pip install "setuptools >= 45.0" build wheel "setuptools_scm[toml] >= 6.2" \
180
181
"pip>=10.0.1" twine docutils
181
182
python3 -m build
182
183
twine check dist/nitransforms*
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ ENV MKL_NUM_THREADS=1 \
199
199
# CRITICAL: Make sure python setup.py --version has been run at least once
200
200
# outside the container, with access to the git history.
201
201
COPY --from=src /src/dist/*.whl .
202
- RUN python -m pip install --no-cache-dir $( ls /src/dist/ *.whl )[all]
202
+ RUN python -m pip install --no-cache-dir $( ls *.whl )[all]
203
203
204
204
205
205
RUN find $HOME -type d -exec chmod go=u {} + && \
You can’t perform that action at this time.
0 commit comments