I am using cypress and integrated it with allure, My automation is getting triggered by github-actions and I would to have history trend for it.
The Process which I followed to generate the history trend is:
- run test execution which will generate folder allure-results
- run command
allure generate --clean
it will generate folderallure-report
- copy history folder from folder
allure-report
to folderallure-results
- run command
allure generate --clean
it will generate folderallure-report
- open index.html inside folder
allure-report
- go to
TREND
section and see thehistory-trend
- again run test execution
- again copy the
history
folder fromallure-report
toallure-report
- run command
allure generate --clean
- open
index.html
insideallure-report
- go to
TREND
section and see thehistory-trend
For history-trend
in X axis, I can see build number is 1
for every run, I was expecting it to increased every time based on you last execution build value at right most
would be helpful to know what I am missing here.