Skip to content

Commit

Permalink
Fix relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Nov 9, 2023
1 parent b88df7e commit af49877
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/phpunit/multisite.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
</php>
<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">includes/</directory>
<file>plugin-check.php</file>
<directory suffix=".php">../../includes/</directory>
<file>../../plugin-check.php</file>
</include>
</coverage>
<testsuites>
<testsuite name="default">
<directory suffix=".php">./tests/phpunit</directory>
<exclude>./tests/phpunit/testdata/plugins/*</exclude>
<exclude>./tests/phpunit/utils/*</exclude>
<exclude>./tests/phpunit/bootstrap.php</exclude>
<directory suffix=".php">./</directory>
<exclude>./testdata/plugins/*</exclude>
<exclude>./utils/*</exclude>
<exclude>./bootstrap.php</exclude>
</testsuite>
</testsuites>
<groups>
Expand All @@ -30,8 +30,8 @@
</groups>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">includes/</directory>
<file>plugin-check.php</file>
<directory suffix=".php">../../includes/</directory>
<file>../../plugin-check.php</file>
</whitelist>
</filter>
</phpunit>

0 comments on commit af49877

Please sign in to comment.