1
0
Fork 0

Enforce memory limit in phpunit.xml (#320)

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/341/head
Sara Itani 2017-04-02 05:08:45 -07:00 committed by jens1o
parent c0233722ff
commit d349a07d55
1 changed files with 3 additions and 0 deletions

View File

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