Skip to content

Commit 5203afe

Browse files
authored
include ruamel.yaml in the mypy reqs & fix/test container build (#1701)
1 parent 9eeccee commit 5203afe

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/workflows/ci-tests.yml

+7
Original file line numberDiff line numberDiff line change
@@ -177,3 +177,10 @@ jobs:
177177
env:
178178
RELEASE_SKIP: head
179179
run: ./release-test.sh
180+
181+
build_test_container:
182+
runs-on: ubuntu-latest
183+
steps:
184+
- uses: actions/checkout@v3
185+
- name: build & test cwltool_module container
186+
run: ./build-cwltool-docker.sh

build-cwltool-docker.sh

+1-7
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,8 @@ set -ex
33
docker build --file=cwltool.Dockerfile --tag=quay.io/commonwl/cwltool_module --target module .
44
docker build --file=cwltool.Dockerfile --tag=quay.io/commonwl/cwltool .
55

6-
docker run -it -v /var/run/docker.sock:/var/run/docker.sock \
6+
docker run -t -v /var/run/docker.sock:/var/run/docker.sock \
77
-v /tmp:/tmp \
88
-v "$PWD":/tmp/cwltool \
99
quay.io/commonwl/cwltool_module /bin/sh -c \
1010
"apk add gcc bash && pip install -r/tmp/cwltool/test-requirements.txt ; pytest -k 'not (test_bioconda or test_double_overwrite or test_env_filtering or test_biocontainers or test_disable_file_overwrite_without_ext or test_disable_file_creation_in_outdir_with_ext or test_write_write_conflict or test_directory_literal_with_real_inputs_inside or test_revsort_workflow or test_stdin_with_id_preset)' --ignore-glob '*test_udocker.py' -n auto -v -rs --pyargs cwltool"
11-
12-
version=$(git describe --tags)
13-
if echo "$version" | grep -vq '\-' >& /dev/null ; then
14-
docker tag quay.io/commonwl/cwltool_module quay.io/commonwl/cwltool_module:"$version"
15-
docker tag quay.io/commonwl/cwltool quay.io/commonwl/cwltool:"$version"
16-
fi

cwltool.Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ RUN apk add --no-cache git gcc python3-dev libxml2-dev libxslt-dev libc-dev linu
55
WORKDIR /cwltool
66
COPY . .
77

8-
RUN pip install toml -rmypy-requirements.txt "$(grep ruamel requirements.txt)" \
9-
"$(grep schema.salad requirements.txt)"
8+
RUN pip install toml -rmypy-requirements.txt "$(grep schema.salad requirements.txt)"
109
# schema-salad is needed to be installed (this time as pure Python) for
1110
# cwltool + mypyc
1211
RUN CWLTOOL_USE_MYPYC=1 MYPYPATH=mypy-stubs pip wheel --no-binary schema-salad --wheel-dir=/wheels .[deps]

mypy-requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
mypy==0.971
2+
ruamel.yaml>=0.16.0,<0.17.22
23
types-requests
34
types-setuptools
45
types-psutil

0 commit comments

Comments
 (0)