-
Notifications
You must be signed in to change notification settings - Fork 9.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: introduce initial version of flakiness dashboard #4781
Conversation
Who guarantees that even a single bot won't run two instances in parallel? |
This patch introduces a dashboard that records test results and uploads them to https://github.com/aslushnikov/puppeteer-flakiness-dashboard Since many bots might push results in parallel, each bot pushes results to its own git branch. FlakinessDashboard also generates a simple README.md with a flakiness summary. If this proves to be not enough, we can build a website that fetches flakiness data and renders it nicely.
Added retries with cooldown in case there are several instances of the same bot working on different revisions in parallel. This, however, should not happen in our setup since CIs limit free accounts to one bot instance. |
This patch introduces a dashboard that records test results and uploads them to https://github.com/aslushnikov/puppeteer-flakiness-dashboard Since many bots might push results in parallel, each bot pushes results to its own git branch. FlakinessDashboard also generates a simple README.md with a flakiness summary. If this proves to be not enough, we can build a website that fetches flakiness data and renders it nicely.
This patch introduces a dashboard that records test results and
uploads them to https://github.com/aslushnikov/puppeteer-flakiness-dashboard
Since many bots might push results in parallel, each bot pushes
results to its own git branch.
FlakinessDashboard also generates a simple README.md with a flakiness
summary. If this proves to be not enough, we can build a website that
fetches flakiness data and renders it nicely.