My allure reports are growing in size running the same test against the same build. Here is the kicker which is blowing my mind on how this could be happening. The VM that is running the test and producing the allure report is reverted from a clean state snapshot at the beginning of each test run and the report is generated in the Jenkins workspace which is also cleared at the beginning of each test run so there is no possible way anything is left over from previous test runs or report generations. Report sizes for same exact test against same build... enter image description here
My report generation block from Jenkins pipeline using the Allure Plugin...
allure([
includeProperties: false,
jdk: '',
properties: [],
reportBuildPolicy: 'ALWAYS',
results: [[path: "$env.BUILD_NUMBER"]]
])
Question: is there some properties to include that will force a clean report with no history in it?
Please advise if you can help