X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;h=db79396857734478613dfa5dbfc4aff842507bcd;hb=d5d53957f4686398727469e0f5b1774a5b6560fe;hp=6948b45cf882d4e63a252b5f744938863d1efdf3;hpb=b892452e1fe2d226f526f9a0685b1095e36b8050;p=csit.git diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 6948b45cf8..db79396857 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -806,9 +806,9 @@ def table_performance_trending_dashboard(table, input_data): or isnan(stdev_t[build_nr]) \ or isnan(value): classification_lst.append("outlier") - elif value < (median_t[build_nr] - 3 * stdev_t[build_nr]): + elif value < (median_t[build_nr] - 2 * stdev_t[build_nr]): classification_lst.append("regression") - elif value > (median_t[build_nr] + 3 * stdev_t[build_nr]): + elif value > (median_t[build_nr] + 2 * stdev_t[build_nr]): classification_lst.append("progression") else: classification_lst.append("normal")