mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
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:
parent
bd6cc2922a
commit
1a3841070d
1 changed files with 1 additions and 1 deletions
|
@ -1834,7 +1834,7 @@ class AppCatalog(TestSuite):
|
||||||
|
|
||||||
score = sum([good_quality(infos) for d, infos in history])
|
score = sum([good_quality(infos) for d, infos in history])
|
||||||
rel_score = int(100 * score / N)
|
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!")
|
yield Success("The app is long-term good quality in the catalog!")
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue