-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathphpunit.xml
More file actions
30 lines (29 loc) · 1.19 KB
/
phpunit.xml
File metadata and controls
30 lines (29 loc) · 1.19 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false"
colors="true" processIsolation="false"
stopOnFailure="false" stopOnError="false" stderr="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd">
<source>
<include>
<directory>src</directory>
</include>
</source>
<testsuites>
<testsuite name="application-tests">
<directory>tests/src/Unit</directory>
<directory>tests/src/Feature</directory>
</testsuite>
<testsuite name="mcp-inspector">
<directory>tests/src/McpInspector</directory>
</testsuite>
</testsuites>
<php>
<env name="OAUTH_ENABLED" value="false"/>
<env name="OAUTH_ISSUER_URL" value="http://127.0.0.1:8090"/>
<env name="OAUTH_SERVER_URL" value="http://127.0.0.1:8090"/>
<env name="OAUTH_CLIENT_ID" value="test-id"/>
<env name="OAUTH_CLIENT_SECRET" value="test-secret"/>
<ini name="error_reporting" value="-1"/>
<ini name="memory_limit" value="-1"/>
</php>
</phpunit>