From 1429b6bedf438804a8c55eb32fb9d3120ba3c0ef Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Fri, 16 Feb 2024 14:05:16 +0100 Subject: [PATCH] ci: fix syntax of DNS_TEST_SUBJECT --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b47ca70..f6e9e86c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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