ci(fix): unset absolute path

This works fine for container images but not for github actions
This commit is contained in:
Daniel Berg 2025-05-07 17:34:17 +02:00
parent e33b796263
commit a82d81db01
No known key found for this signature in database
GPG key ID: BFB01A06E7FB4F81

View file

@ -8,8 +8,10 @@ fail_helper() {
TEST_STATUS="fail"
}
TERM="tmux-256color"
# Do tests with expect
/app/tests/expect_fuzzback.exp || fail_helper "Testing failed!"
tests/expect_fuzzback.exp || fail_helper "Testing failed!"
if [ "$TEST_STATUS" == "fail" ]; then
echo "FAIL!"