What is the maximum amount of unittest case data supported? #1529
-
Hi forks, I'm a backend engineer, currently i use allure to integration my test case result data by thx. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
allure loads all the results into RAM during report generation. And it may take it a while. But the main issue would be the generated report itself, a single DOM will be created for list of all the results, and I doubt any browser can handle the DOM of 6GB. I have no issues generating report of 300k junit.xml test results, the report laggy but it works. |
Beta Was this translation helpful? Give feedback.
-
can |
Beta Was this translation helpful? Give feedback.
-
in my issue, i used json and text files |
Beta Was this translation helpful? Give feedback.
allure loads all the results into RAM during report generation. And it may take it a while.
But the main issue would be the generated report itself, a single DOM will be created for list of all the results, and I doubt any browser can handle the DOM of 6GB.
I have no issues generating report of 300k junit.xml test results, the report laggy but it works.