Skip to content

Commit

Permalink
Add a couple of messages to runtests.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Oct 24, 2015
1 parent 6bd3d5a commit a6942ba
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
# Any parameters that may be passed to phpunit may also be used
# with runtests.sh.

echo
echo "Begin tests."
echo

# We use the Drush that is on the global $PATH. See .travis.yml
DRUSH_PATH="$(which drush)"
SYM="`readlink "$DRUSH_PATH"`"
Expand All @@ -31,7 +35,9 @@ fi

# Run all tests if there were no arguments
if [ $# = 0 ] ; then
echo UNISH_NO_TIMEOUTS=y $PHPUNIT --bootstrap="$DRUSH_DIR/tests/bootstrap.inc" tests
UNISH_NO_TIMEOUTS=y $PHPUNIT --bootstrap="$DRUSH_DIR/tests/bootstrap.inc" tests
else
echo UNISH_NO_TIMEOUTS=y $PHPUNIT --bootstrap="$DRUSH_DIR/tests/bootstrap.inc" "$@"
UNISH_NO_TIMEOUTS=y $PHPUNIT --bootstrap="$DRUSH_DIR/tests/bootstrap.inc" "$@"
fi

0 comments on commit a6942ba

Please sign in to comment.