Skip to content

Commit c0d787d

Browse files
committed
tests: specify registry for remaining containers without it
1 parent 7098f79 commit c0d787d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

tests/docker-run-cmd.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ class: CommandLineTool
22
cwlVersion: v1.2
33
requirements:
44
DockerRequirement:
5-
dockerPull: bash:4.4.12
5+
dockerPull: docker.io/bash:4.4
66
inputs: []
77
outputs:
88
cow:

tests/symlink-illegal.cwl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cwlVersion: v1.2
44
doc: "Create a file under /tmp, symlink it to working directory and glob symlink. The executor should NOT resolve this symlink"
55
hints:
66
DockerRequirement:
7-
dockerPull: alpine
7+
dockerPull: docker.io/alpine:latest
88
inputs: []
99
outputs:
1010
output_file:
@@ -22,4 +22,4 @@ arguments:
2222
- ln
2323
- -s
2424
- /tmp/original.txt
25-
- symlink.txt
25+
- symlink.txt

tests/symlink-legal.cwl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cwlVersion: v1.2
44
doc: "Create a file under adir/, symlink it to working directory (./) and glob symlink. The executor should resolve this symlink"
55
hints:
66
DockerRequirement:
7-
dockerPull: alpine
7+
dockerPull: docker.io/alpine:latest
88
inputs: []
99
outputs:
1010
output_file:
@@ -25,4 +25,4 @@ arguments:
2525
- ln
2626
- -s
2727
- adir/original.txt
28-
- symlink.txt
28+
- symlink.txt

tests/writable-dir-docker.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ requirements:
1212

1313
hints:
1414
- class: DockerRequirement
15-
dockerPull: alpine
15+
dockerPull: docker.io/alpine:latest
1616

1717
inputs: []
1818
outputs:

0 commit comments

Comments
 (0)