v1/web/modules/contrib/commerce/.travis-simpletest-js.sh

20 lines
510 B
PHP

#!/bin/bash
# @file
# Simple script to run the tests via travis-ci.
set -e $DRUPAL_TI_DEBUG
export ARGS=( $DRUPAL_TI_SIMPLETEST_JS_ARGS )
if [ -n "$DRUPAL_TI_SIMPLETEST_GROUP" ]
then
ARGS=( "${ARGS[@]}" "$DRUPAL_TI_SIMPLETEST_GROUP" )
fi
cd "$DRUPAL_TI_DRUPAL_DIR"
{ php "$DRUPAL_TI_SIMPLETEST_FILE" --php $(which php) "${ARGS[@]}" || echo "1 fails"; } | tee /tmp/simpletest-result.txt
egrep -i "([1-9]+ fail[s]?)|(Fatal error)|([1-9]+ exception[s]?)" /tmp/simpletest-result.txt && exit 1
exit 0