mirror of
https://github.com/buddypress/buddypress.git
synced 2026-07-21 20:54:17 +08:00
A new Github Action is added with a simple matrix to run our unit tests with object cache services, currently Memcache and Redis. Props imath See #9076 Fixes #9129 Closes https://github.com/buddypress/buddypress/pull/284 git-svn-id: https://buddypress.svn.wordpress.org/trunk@13859 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
14 lines
347 B
XML
14 lines
347 B
XML
<phpunit
|
|
bootstrap="tests/phpunit/bootstrap.php"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="default">
|
|
<directory suffix=".php">./tests/phpunit/testcases/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|