Skip to content
Snippets Groups Projects
Commit 1d61c030 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-7189: Fix script for fast fail

parent 235a0561
No related branches found
No related tags found
1 merge request!83ISTWCMS-7160 Fix service content type in testAutomaticListBlocksSettings in...
...@@ -113,16 +113,16 @@ for value in "${files[@]}"; do ...@@ -113,16 +113,16 @@ for value in "${files[@]}"; do
else else
php vendor/bin/codecept run acceptance "$value" --fail-fast php vendor/bin/codecept run acceptance "$value" --fail-fast
fi fi
if [[ $installsite == 1 ]]; then if [[ $? -ne 0 ]]; then
if [[ $? -ne 0 ]]; then if [[ $installsite == 1 ]]; then
rm "$sqlfile" rm "$sqlfile"
echo ""
echo "*********************************************************"
echo "Test $value failed, done test."
echo "*********************************************************"
echo ""
break
fi fi
echo ""
echo "*********************************************************"
echo "Test $value failed, done test."
echo "*********************************************************"
echo ""
break
fi fi
echo "" echo ""
echo "*********************************************************" echo "*********************************************************"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment