-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
22 lines (22 loc) · 1.08 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
22 lines (22 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" bootstrap="tests/bootstrap.php" colors="true" beStrictAboutOutputDuringTests="true" beStrictAboutTestsThatDoNotTestAnything="true" failOnRisky="true" failOnWarning="true" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="DiscogsApiBundle Test Suite">
<directory suffix="Test.php">tests/Unit</directory>
<directory suffix="Test.php">tests/Functional</directory>
<directory suffix="Test.php">tests/Integration</directory>
</testsuite>
</testsuites>
<php>
<!-- Test Discogs credentials for integration tests (optional) -->
<!-- Uncomment and set these for live API tests -->
<!-- <env name="DISCOGS_USER_TOKEN" value="your_token_here"/>
<env name="DISCOGS_CONSUMER_KEY" value="your_key"/>
<env name="DISCOGS_CONSUMER_SECRET" value="your_secret"/>-->
</php>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>