wp-cli-bbpress/bin/test.sh
2017-11-10 15:05:08 -03:00

13 lines
263 B
Bash

#!/bin/bash
set -ex
# Run the unit tests, if they exist
if [ -f "phpunit.xml" ] || [ -f "phpunit.xml.dist" ]
then
phpunit
fi
# Run the functional tests
BEHAT_TAGS=$(php utils/behat-tags.php)
vendor/behat/behat/bin/behat --format progress $BEHAT_TAGS --strict