Uh oh!
There was an error while loading. Please reload this page.
forked from api-platform/core
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
Latest commit
47 lines (44 loc) · 1.56 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
47 lines (44 loc) · 1.56 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
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
bootstrap="tests/Fixtures/app/bootstrap.php"
colors="true"
cacheDirectory=".phpunit.cache">
<php>
<ininame="error_reporting"value="-1"/>
<ininame="memory_limit"value="-1"/>
<!-- This is necessary for GitHub Actions to work properly -->
<servername="KERNEL_DIR"value="tests/Fixtures/app/"/>
<servername="KERNEL_CLASS"value="AppKernel"/>
<envname="APP_ENV"value="test"/>
<!-- to remove behat extensions in the AppKernel -->
<envname="APP_PHPUNIT"value="true"/>
</php>
<testsuites>
<testsuitename="API Platform Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>mongodb</group>
<group>mercure</group>
</exclude>
</groups>
<sourceignoreSuppressionOfDeprecations="true"ignoreIndirectDeprecations="true"baseline="phpunit.baseline.xml">
<deprecationTrigger>
<function>trigger_deprecation</function>
<method>Doctrine\Deprecations\Deprecation::trigger</method>
<method>Doctrine\Deprecations\Deprecation::delegateTriggerToBackend</method>
</deprecationTrigger>
<include>
<directory>.</directory>
</include>
<exclude>
<directory>tests</directory>
<directory>features</directory>
<directory>vendor</directory>
<file>.php-cs-fixer.dist.php</file>
</exclude>
</source>
</phpunit>