1
0
Fork 0

Enforce memory limit in phpunit.xml

This will help highlight memory regressions, make it easier for newcomers to get started with the codebase w/o editing php.ini defaults (128M), and also keep things consistent between local and travis runs.
pull/320/head
Sara Itani 2017-03-01 16:43:25 -08:00
parent 56bd465bf8
commit eb70f17a9a
1 changed files with 3 additions and 0 deletions

View File

@ -11,4 +11,7 @@
<directory>./src</directory>
</whitelist>
</filter>
<php>
<ini name="memory_limit" value="256M"/>
</php>
</phpunit>