Commit 0369a56e authored by Andreas Möller's avatar Andreas Möller Committed by Markus Kalkbrenner

Fix: Remove invalid configuration from phpunit.xml (#562)

* Enhancement: Reference phpunit.xsd

* Fix: Remove invalid configuration
parent 3fb304d2
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit <phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false" backupGlobals="false"
backupStaticAttributes="false" backupStaticAttributes="false"
syntaxCheck="false"
colors="true" colors="true"
> >
<testsuites> <testsuites>
<testsuite name="Solarium"> <testsuite name="Solarium">
<directory suffix="Test.php">tests</directory> <directory suffix="Test.php">tests</directory>
...@@ -13,11 +13,9 @@ ...@@ -13,11 +13,9 @@
</testsuites> </testsuites>
<logging> <logging>
<log type="coverage-html" target="build/coverage" title="Solarium" <log type="coverage-html" target="build/coverage" lowUpperBound="35" highLowerBound="70"/>
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/> <log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/> <log type="junit" target="build/logs/junit.xml"/>
</logging> </logging>
<filter> <filter>
......
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit <phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false" backupGlobals="false"
backupStaticAttributes="false" backupStaticAttributes="false"
syntaxCheck="false" colors="true"
> >
<testsuites> <testsuites>
<testsuite name="Solarium"> <testsuite name="Solarium">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment