Skip to content

Commit

Permalink
Merge pull request #167 from owncloud/moveUnitTestsForFunWizard
Browse files Browse the repository at this point in the history
[tests-only][full-ci]Tidy up the phpunit xml file for firstrunwizard app
  • Loading branch information
phil-davis authored May 25, 2022
2 parents e65224f + baed234 commit 118376a
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../tests/bootstrap.php" verbose="true" failOnRisky="true" failOnWarning="true" timeoutForSmallTests="900" timeoutForMediumTests="900" timeoutForLargeTests="900" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="../../tests/bootstrap.php"
verbose="true"
failOnRisky="true"
failOnWarning="true"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">./tests/unit</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">.</directory>
Expand All @@ -12,13 +25,4 @@
<clover outputFile="./tests/output/clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">./tests/unit</directory>
</testsuite>
</testsuites>
<!-- filters for code coverage -->
<logging>
<!-- and this is where your report will be written -->
</logging>
</phpunit>

0 comments on commit 118376a

Please sign in to comment.