Blob Blame History Raw
#!/bin/bash
set -e

test_log="/tmp/artifacts/test.log"

echo "Make sure test log has failed test"
grep -e "^FAIL" ${test_log}

echo "Change FAIL results to PASS"
sed -i -e 's/^FAIL/PASS/g' ${test_log}