-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
42 lines (41 loc) · 1.42 KB
/
phpunit.xml
File metadata and controls
42 lines (41 loc) · 1.42 KB
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
41
42
<?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="vendor/autoload.php"
colors="true"
defaultTestSuite="Package">
<!--
Performance is opt-in: run via
`vendor/bin/phpunit testsuite Performance`. Plain
`vendor/bin/phpunit` runs Package only.
Fuzzers are opt-in too. Tagged with the `fuzzer` PHPUnit group
and excluded from the default run. Trigger with `composer fuzz`
or `vendor/bin/phpunit` with the `group` CLI flag (the literal
double-dash before `group` is omitted here because XML comments
cannot contain it). Configure via the env vars
FUZZER_SEEDS / FUZZER_STEPS / FUZZER_RUNS; see
tests/Support/FuzzerConfig.php.
-->
<testsuites>
<testsuite name="Package">
<directory>tests</directory>
<exclude>tests/Performance</exclude>
</testsuite>
<testsuite name="Performance">
<directory>tests/Performance</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>fuzzer</group>
</exclude>
</groups>
<source>
<include>
<directory>src</directory>
</include>
</source>
<php>
<env name="DB_CONNECTION" value="sqlite"/>
</php>
</phpunit>