-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
42 lines (42 loc) · 1.36 KB
/
phpunit.xml.dist
File metadata and controls
42 lines (42 loc) · 1.36 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="https://schema.phpunit.de/10.1/phpunit.xsd" bootstrap="vendor/autoload.php" cacheDirectory=".phpunit.cache">
<php>
<env name="DB_DSN" value="pgsql:host=localhost;dbname=constraint_engine_test"/>
<env name="DB_USER" value="app"/>
<env name="DB_PASS" value="secret"/>
</php>
<coverage includeUncoveredFiles="false"/>
<testsuites>
<testsuite name="resource">
<directory>tests/Resource</directory>
</testsuite>
<testsuite name="hypermedia">
<directory>tests/Hypermedia</directory>
</testsuite>
<testsuite name="http">
<directory>tests/Http</directory>
</testsuite>
<testsuite name="mcp">
<directory>tests/Mcp</directory>
</testsuite>
<testsuite name="semantic">
<directory>tests/Semantic</directory>
</testsuite>
<testsuite name="unit">
<directory>tests</directory>
<exclude>tests/Resource</exclude>
<exclude>tests/Hypermedia</exclude>
<exclude>tests/Http</exclude>
<exclude>tests/Mcp</exclude>
<exclude>tests/Semantic</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<file>src/Bootstrap.php</file>
</exclude>
</source>
</phpunit>