Skip to content

Commit

Permalink
fix: phpunit config adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
njasm committed Jul 17, 2024
1 parent a489ece commit 48919c5
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="src/Soundcloud/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
stopOnFailure="false">

<testsuites>
<testsuite name="Soundcloud API Tests">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<file>autoload.php</file>
</exclude>
</whitelist>
</filter>
</testsuites>
</phpunit>

0 comments on commit 48919c5

Please sign in to comment.