mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-22 00:05:49 +02:00
build
code_sniffer
git-tools
phpBB
tests
travis
.gitignore
.travis.yml
README.md
composer.phar
phpunit.xml.all
phpunit.xml.dist
phpunit.xml.functional
As per the ticket comments, these can simply be removed, rather than having to be renamed to the new file locations. PHPBB3-11466
40 lines
1.1 KiB
XML
40 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="true"
|
|
backupStaticAttributes="true"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="phpBB Test Suite">
|
|
<directory suffix="_test.php">./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<groups>
|
|
<include>
|
|
<group>functional</group>
|
|
</include>
|
|
</groups>
|
|
|
|
<filter>
|
|
<blacklist>
|
|
<directory>./tests/</directory>
|
|
</blacklist>
|
|
<whitelist>
|
|
<directory suffix=".php">./phpBB/includes/</directory>
|
|
<exclude>
|
|
<file>./phpBB/includes/search/fulltext_native.php</file>
|
|
<file>./phpBB/includes/search/fulltext_mysql.php</file>
|
|
<directory suffix=".php">./phpBB/includes/captcha/</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|