-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
40 lines (38 loc) · 1.33 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
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
colors="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false">
<testsuites>
<testsuite name="common">
<directory>./tests</directory>
<exclude>./tests/Unit/Membership/User</exclude>
</testsuite>
<testsuite name="validation">
<directory>./source/validation/tests</directory>
</testsuite>
<testsuite name="authorlist">
<directory>./membership/authorlists/source/tests</directory>
</testsuite>
<testsuite name="speakers">
<directory>./speakers/tests</directory>
</testsuite>
<testsuite name="membership">
<directory>./membership/tests</directory>
<directory>./membership/non-atlas/topic/tests</directory>
</testsuite>
<testsuite name="analysis">
<directory>./analysis/tests</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>deprecated</group>
</exclude>
</groups>
<php>
<env name="ENVIRONMENT" value="testing" force="true" />
<ini name="display_errors" value="On" />
<ini name="display_startup_errors" value="On" />
</php>
</phpunit>