Skip to content

Instantly share code, notes, and snippets.

@Legion112
Created September 27, 2021 10:47
Show Gist options
  • Save Legion112/f5248840dc776b0ca823c3fe1446bc7a to your computer and use it in GitHub Desktop.
Save Legion112/f5248840dc776b0ca823c3fe1446bc7a to your computer and use it in GitHub Desktop.
Run test till it fail
while true; do
docker-compose exec clients_back vendor/bin/codecept run tests/api/Buyer/StatusChangeCest.php:closed
if [ $? -ne 0 ]; then
break
fi
done
@Legion112
Copy link
Author

Run test till it fail

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment