Allure 3 timeline "No data" allure 2 has timeline #3251
Unanswered
rjanssens-illumina
asked this question in
Questions & Support
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With allure 3 I build allure 3 reports as a allure 2 report with the same input result.jsons.
As you can see in the screenshots in my allure 2 report the timeline is populated. But for my allure 3 report (based on the same data) it shows as no data.
How do I correctly configure allure 3 te populate the timeline?
And are there other recommendations? I am building a test orchestration framework that sets of over 15 github action testing workflows, and afterwards consolidates all the result jsons into 1 big s3 hosted report.
Thanks!
{ "name": "Allure Report", "output": "./target/allure-report", "historyPath": "./target/history/history.jsonl", "plugins": { "awesome-suite": { "import": "@allurereport/plugin-awesome", "options": { "reportName": "Allure 3: by Suite", "singleFile": false, "groupBy": ["parentSuite", "suite", "subSuite"] } }, "awesome-behaviour": { "import": "@allurereport/plugin-awesome", "options": { "reportName": "Allure 3: by Behaviour", "singleFile": false, "groupBy": ["epic", "feature", "story"] } }, "awesome-package": { "import": "@allurereport/plugin-awesome", "options": { "reportName": "Allure 3: by Package", "singleFile": false, "groupBy": ["package"] } }, "allure2": { "options": { "reportName": "Allure 2", "singleFile": false, "reportLanguage": "en" } } } }Beta Was this translation helpful? Give feedback.
All reactions