From c1d10d37df46a3f647e9d9f70b56fe1df40e42fe Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Mon, 24 Feb 2025 08:19:27 +0000 Subject: [PATCH] chore(actions): run all test suites, not just `extract` Fixes an extra suite argumenta added to the test runner command, which told it to only run tests located in the extraction module. --- .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 07994a7..5654912 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,5 +118,5 @@ jobs: run: | # HACK: Since the exit code isn't properly reflected due to frktest not returning # the correct status on test fails, we have to parse the output and check ourselves - output="$(nix develop -c lune run tests extract | tee /dev/stderr)" + output="$(nix develop -c lune run tests | tee /dev/stderr)" tail -n 1 <<< $output | sed 's/\x1b\[[0-9;]*m//g' | grep -q "status: OK"