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.
This commit is contained in:
Erica Marigold 2025-02-24 08:19:27 +00:00
parent 3b66104cb3
commit c1d10d37df
Signed by: DevComp
SSH key fingerprint: SHA256:jD3oMT4WL3WHPJQbrjC3l5feNCnkv7ndW8nYaHX5wFw

View file

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