«Flaky is a plugin for nose or py.test that automatically reruns flaky tests.
Ideally, tests reliably pass or fail, but sometimes test fixtures must rely on components that aren't 100% reliable. With flaky, instead of removing those tests or marking them to @Skip, they can be automatically retried» using the @flaky decorator.
We must check if this can be compatible with Travis (ie, if we rerun the test using flaky, is Travis also happy?), but this could solve our perf test issue.
«Flaky is a plugin for nose or py.test that automatically reruns flaky tests.
Ideally, tests reliably pass or fail, but sometimes test fixtures must rely on components that aren't 100% reliable. With flaky, instead of removing those tests or marking them to @Skip, they can be automatically retried» using the
@flakydecorator.We must check if this can be compatible with Travis (ie, if we rerun the test using flaky, is Travis also happy?), but this could solve our perf test issue.