From 1c49e57eba34dd79eb632f700ab759f590d7e699 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Wed, 18 Nov 2020 15:53:09 -0500 Subject: [PATCH] Escape single quotes passed as CMD args to cargo --- docker/Dockerfile.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.test b/docker/Dockerfile.test index b41c8c8b8..95f356644 100644 --- a/docker/Dockerfile.test +++ b/docker/Dockerfile.test @@ -19,4 +19,4 @@ RUN cargo test --all --no-run RUN find /zebra/target/debug/deps -type f -perm 755 ! -name '*.dylib' ! -name '*.so' | sed -e 'p;s/-.*//' | xargs -n2 mv # Filtering to only run integration tests requires nightly for now -CMD ["cargo", "+nightly", "test", "--test", "'*'", "--no-fail-fast", "--", "-Zunstable-options", "--include-ignored"] +CMD ["cargo", "+nightly", "test", "--test", "\'*\'", "--no-fail-fast", "--", "-Zunstable-options", "--include-ignored"]