Escape single quotes passed as CMD args to cargo

This commit is contained in:
Deirdre Connolly 2020-11-18 15:53:09 -05:00 committed by Deirdre Connolly
parent a23de13af9
commit 1c49e57eba
1 changed files with 1 additions and 1 deletions

View File

@ -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"]