mirror of
https://gh.wpcy.net/https://github.com/wp-cli/extension-command.git
synced 2026-04-26 03:33:28 +08:00
13 lines
240 B
Bash
Executable file
13 lines
240 B
Bash
Executable file
#!/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)
|
|
behat --format progress $BEHAT_TAGS --strict
|