5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PHPunit実行時にメモリが足りない・・・

Last updated at Posted at 2018-07-05

テストは大事

Laravel(version 5.6)でWebアプリケーションを開発中。
Unitテストを中心に、たくさんのテストを作成している。

こんなエラーが出た

エラー内容
Fatal error: Allowed memory size of 134217728 bytes exhausted

許可されているメモリサイズを超過したらしい。

対処方法

Laravelのphpunit.xmlというファイルに以下を追加する。

phpunit.xml
<phpunit.../>
  <php>
    <ini name="memory_limit" value="-1"/>
  </php>
</phpunit>

memory_limitを無限大にするということらしいです。

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?