@@ -1129,14 +1129,15 @@ def test_docker_cmd(tmpdir):
1129
1129
docky .cmdline
1130
1130
== f"docker run --rm -it -v { docky .output_dir } :/output_pydra:rw -w /output_pydra busybox pwd"
1131
1131
)
1132
- docky .inputs .bindings = [
1133
- ("/local/path" , "/container/path" , "ro" ),
1134
- ("/local2" , "/container2" , None ),
1135
- ]
1136
- assert docky .cmdline == (
1137
- "docker run --rm -it -v /local/path:/container/path:ro"
1138
- f" -v /local2:/container2:rw -v { docky .output_dir } :/output_pydra:rw -w /output_pydra busybox pwd"
1139
- )
1132
+ # TODO: we probably don't want to support container_path
1133
+ # docky.inputs.bindings = [
1134
+ # ("/local/path", "/container/path", "ro"),
1135
+ # ("/local2", "/container2", None),
1136
+ # ]
1137
+ # assert docky.cmdline == (
1138
+ # "docker run --rm -it -v /local/path:/container/path:ro"
1139
+ # f" -v /local2:/container2:rw -v {docky.output_dir}:/output_pydra:rw -w /output_pydra busybox pwd"
1140
+ # )
1140
1141
1141
1142
1142
1143
@no_win
@@ -1148,14 +1149,15 @@ def test_singularity_cmd(tmpdir):
1148
1149
singu .cmdline
1149
1150
== f"singularity exec -B { singu .output_dir } :/output_pydra:rw --pwd /output_pydra { image } pwd"
1150
1151
)
1151
- singu .inputs .bindings = [
1152
- ("/local/path" , "/container/path" , "ro" ),
1153
- ("/local2" , "/container2" , None ),
1154
- ]
1155
- assert singu .cmdline == (
1156
- "singularity exec -B /local/path:/container/path:ro"
1157
- f" -B /local2:/container2:rw -B { singu .output_dir } :/output_pydra:rw --pwd /output_pydra { image } pwd"
1158
- )
1152
+ # TODO: we probably don't want to support container_path
1153
+ # singu.inputs.bindings = [
1154
+ # ("/local/path", "/container/path", "ro"),
1155
+ # ("/local2", "/container2", None),
1156
+ # ]
1157
+ # assert singu.cmdline == (
1158
+ # "singularity exec -B /local/path:/container/path:ro"
1159
+ # f" -B /local2:/container2:rw -B {singu.output_dir}:/output_pydra:rw --pwd /output_pydra {image} pwd"
1160
+ # )
1159
1161
1160
1162
1161
1163
def test_functask_callable (tmpdir ):
0 commit comments