-
Notifications
You must be signed in to change notification settings - Fork 120
/
phpunit.xml
34 lines (30 loc) · 1.14 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?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"
cacheDirectory=".phpunit.cache"
defaultTestSuite="Rollbar Test Suite">
<testsuites>
<testsuite name="Rollbar Test Suite">
<directory suffix=".php">./tests/</directory>
<exclude>./tests/Performance/</exclude>
<exclude>./tests/TestHelpers/</exclude>
<exclude>./tests/FakeDataBuilder.php</exclude>
<exclude>./tests/bootstrap.php</exclude>
<exclude>./tests/BaseRollbarTest.php</exclude>
</testsuite>
<testsuite name="Rollbar Performance Test Suite">
<directory suffix=".php">./tests/Performance/</directory>
</testsuite>
</testsuites>
<coverage/>
<php>
<env name="ROLLBAR_TEST_TOKEN" value="ad865e76e7fb496fab096ac07b1dbabb"/>
</php>
<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>src</directory>
</include>
</source>
</phpunit>