ci: fix syntax of DNS_TEST_SUBJECT

This commit is contained in:
Jorge Aparicio 2024-02-16 14:05:16 +01:00
parent 0afae4f042
commit 1429b6bedf

View File

@ -39,7 +39,7 @@ jobs:
- name: Check that ignored tests fail with hickory
run: |
tmpfile="$(mktemp)"
DNS_TEST_SUBJECT=hickory cargo test -p conformance-tests -- --ignored | tee "$tmpfile"
DNS_TEST_SUBJECT="hickory /tmp/hickory" cargo test -p conformance-tests -- --ignored | tee "$tmpfile"
grep 'test result: FAILED. 0 passed' "$tmpfile" || ( echo "expected ALL tests to fail but at least one passed; the passing tests must be un-#[ignore]-d" && exit 1 )
- name: Check that code is formatted