-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathphpunit-dev.xml.dist
More file actions
30 lines (30 loc) · 1.11 KB
/
phpunit-dev.xml.dist
File metadata and controls
30 lines (30 loc) · 1.11 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
<phpunit
bootstrap="app/code/community/Ecocode/Profiler/Tests/Dev/bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="true"
verbose="true">
<testsuites>
<testsuite name="ecocode Magento Profiler">
<directory suffix="Test.php">app/code/community/Ecocode/Profiler/Tests/Dev</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">app/code/community/Ecocode/Profiler</directory>
<exclude>
<directory suffix=".php">app/code/community/Ecocode/Profiler/Tests</directory>
<file>app/code/community/Ecocode/Profiler/functions.php</file>
<file>app/code/community/Ecocode/Profiler/debug.php</file>
</exclude>
</whitelist>
</filter>
<!-- <logging>
<log type="coverage-html" target="./coverage" />
</logging>-->
<php>
<ini name="memory_limit" value="2047M"/>
<env name="environment" value="dev"/>
</php>
</phpunit>