Lower long-term good quality treshold because some apps are stuck to level 7 just because they were level 0 during a few weeks despite being level 7+ for like two years

This commit is contained in:
Alexandre Aubin 2021-12-05 00:19:37 +01:00
parent bd6cc2922a
commit 1a3841070d

View file

@ -1834,7 +1834,7 @@ class AppCatalog(TestSuite):
score = sum([good_quality(infos) for d, infos in history])
rel_score = int(100 * score / N)
if rel_score > 90:
if rel_score > 80:
yield Success("The app is long-term good quality in the catalog!")