Filter broken command tests while including ignored otherwise

This commit is contained in:
Deirdre Connolly 2020-11-20 01:43:05 -05:00 committed by Deirdre Connolly
parent 7dfea510d5
commit 706c42de3e
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ jobs:
- name: Run all tests
run: |
gcloud compute ssh "zebrad-tests-$BRANCH_NAME-$SHORT_SHA" --zone "$ZONE" \
--command "git clone -b $BRANCH_NAME https://github.com/ZcashFoundation/zebra.git; cd zebra/; docker build -f docker/Dockerfile.test -t zebrad-test .; docker run -i zebrad-test cargo +nightly test --all --test '*' --no-fail-fast -- -Zunstable-options --include-ignored"
--command "git clone -b $BRANCH_NAME https://github.com/ZcashFoundation/zebra.git; cd zebra/; docker build -f docker/Dockerfile.test -t zebrad-test .; docker run -i zebrad-test cargo +nightly test --all --no-fail-fast -- -Zunstable-options --include-ignored --skip kill_on_timeout"
# Clean up
- name: Delete test instance

View File

@ -17,4 +17,4 @@ EXPOSE 8233 18233
COPY . .
# Filtering to only run integration tests requires nightly for now
CMD cargo +nightly test --all --test '*' --no-fail-fast -- -Zunstable-options --include-ignored
CMD cargo +nightly test --all --no-fail-fast -- -Zunstable-options --include-ignored