You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have almost 13GB worth of .cov files. I am trying to generate an HTML report using the command phpcov merge cov --html=all-html in a 16GB RAM environment. Specifically, I'm using CodeBuild in AWS.
Eventually I run out of memory and the generation fails. Is there a way for me to improve memory utilization? Or am I just dealing with too many .cov files?
The text was updated successfully, but these errors were encountered:
For a while we were able to avoid this issue by splitting our test suite into more threads and increasing the amount of ram we allow for phpunit and phpcov to use. At this point we have 8 .cov files totaling over 5 gigs and we have to find a different solution. The latest version of phpcov wants more than 3 Gb to process that (previous version was able to do the same job with a 2 Gb memory limit.)
I also have a memory issue with 4 408 .cov files (2,02 Go). Would it be a way to overcome this by merging a limited set of files, and then merging the resulting files, and so on recursively until only one file left?
I have almost 13GB worth of .cov files. I am trying to generate an HTML report using the command
phpcov merge cov --html=all-html
in a 16GB RAM environment. Specifically, I'm using CodeBuild in AWS.Eventually I run out of memory and the generation fails. Is there a way for me to improve memory utilization? Or am I just dealing with too many .cov files?
The text was updated successfully, but these errors were encountered: