We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ccf259 commit cec0139Copy full SHA for cec0139
.evergreen/config.yml
@@ -345,6 +345,12 @@ functions:
345
ENTRYPOINT: /root/test-entrypoint.sh
346
args:
347
- ${DRIVERS_TOOLS}/.evergreen/docker/run-server.sh
348
+ - command: subprocess.exec
349
+ type: test
350
+ params:
351
+ binary: bash
352
+ args:
353
+ - ${DRIVERS_TOOLS}/.evergreen/docker/teardown.sh
354
- command: shell.exec
355
type: test
356
params:
.evergreen/docker/teardown.sh
@@ -21,7 +21,7 @@ fi
21
$DOCKER rm "$($DOCKER ps -a -q)" &> /dev/null || true
22
23
# Remove all images.
24
-$DOCKER rmi -f "$($DOCKER -a -q)" &> /dev/null || true
+$DOCKER rmi -f "$($DOCKER images -a -q)" &> /dev/null || true
25
26
# Remove all generated files in this subfolder.
27
pushd $SCRIPT_DIR > /dev/null
0 commit comments