Bump PHPUnit version to 9.6
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
parent
07594eda44
commit
3716f94dd3
@ -101,10 +101,10 @@
|
||||
"phpmyadmin/coding-standard": "^3.0.0",
|
||||
"phpstan/extension-installer": "^1.1",
|
||||
"phpstan/phpstan": "^1.8",
|
||||
"phpstan/phpstan-phpunit": "^1.0",
|
||||
"phpstan/phpstan-phpunit": "^1.3",
|
||||
"phpstan/phpstan-strict-rules": "^1.4",
|
||||
"phpstan/phpstan-webmozart-assert": "^1.0",
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"phpunit/phpunit": "^9.6",
|
||||
"pragmarx/google2fa-qrcode": "^2.1",
|
||||
"psalm/plugin-phpunit": "^0.18.4",
|
||||
"roave/security-advisories": "dev-latest",
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
|
||||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
||||
bootstrap="test/bootstrap-dist.php"
|
||||
colors="true"
|
||||
forceCoversAnnotation="true"
|
||||
@ -9,38 +9,37 @@
|
||||
executionOrder="random"
|
||||
defaultTestSuite="unit"
|
||||
>
|
||||
<php>
|
||||
<const name="PHPMYADMIN" value="1"/>
|
||||
<const name="TESTSUITE" value="1"/>
|
||||
<env name="LC_ALL" value="C.UTF8" force="true"/>
|
||||
</php>
|
||||
|
||||
<testsuites>
|
||||
<testsuite name="unit">
|
||||
<directory suffix="Test.php">test/classes</directory>
|
||||
</testsuite>
|
||||
<testsuite name="selenium">
|
||||
<directory suffix="Test.php">test/selenium</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
|
||||
<logging>
|
||||
<log type="coverage-clover" target="build/logs/clover.xml" />
|
||||
<log type="coverage-xml" target="build/logs/coverage-xml"/>
|
||||
<log type="junit" target="build/logs/junit.xml" />
|
||||
</logging>
|
||||
|
||||
<filter>
|
||||
<whitelist>
|
||||
<directory suffix=".php">.</directory>
|
||||
<exclude>
|
||||
<directory>examples</directory>
|
||||
<directory>libraries/cache</directory>
|
||||
<directory>node_modules</directory>
|
||||
<directory>test</directory>
|
||||
<directory>tmp</directory>
|
||||
<directory>vendor</directory>
|
||||
</exclude>
|
||||
</whitelist>
|
||||
</filter>
|
||||
<coverage>
|
||||
<include>
|
||||
<directory suffix=".php">.</directory>
|
||||
</include>
|
||||
<exclude>
|
||||
<directory>examples</directory>
|
||||
<directory>libraries/cache</directory>
|
||||
<directory>node_modules</directory>
|
||||
<directory>test</directory>
|
||||
<directory>tmp</directory>
|
||||
<directory>vendor</directory>
|
||||
</exclude>
|
||||
<report>
|
||||
<clover outputFile="build/logs/clover.xml"/>
|
||||
<xml outputDirectory="build/logs/coverage-xml"/>
|
||||
</report>
|
||||
</coverage>
|
||||
<php>
|
||||
<const name="PHPMYADMIN" value="1"/>
|
||||
<const name="TESTSUITE" value="1"/>
|
||||
<env name="LC_ALL" value="C.UTF8" force="true"/>
|
||||
</php>
|
||||
<testsuites>
|
||||
<testsuite name="unit">
|
||||
<directory suffix="Test.php">test/classes</directory>
|
||||
</testsuite>
|
||||
<testsuite name="selenium">
|
||||
<directory suffix="Test.php">test/selenium</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<logging>
|
||||
<junit outputFile="build/logs/junit.xml"/>
|
||||
</logging>
|
||||
</phpunit>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user