mirror of
https://ghproxy.net/https://github.com/bbpress/wp-cli-bbpress.git
synced 2026-03-06 22:23:36 +08:00
13 lines
263 B
Bash
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
|