Rename `topcrash_add_keyword` to `topcrash_highlight`

This commit is contained in:
Suhaib Mujahid 2023-04-26 23:07:43 -04:00 коммит произвёл Suhaib Mujahid
Родитель c2a6193135
Коммит c4df579cf0
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -19,14 +19,14 @@ from auto_nag.topcrash import TOP_CRASH_IDENTIFICATION_CRITERIA, Topcrash
MAX_SIGNATURES_PER_QUERY = 30
class TopcrashAddKeyword(BzCleaner):
class TopcrashHighlight(BzCleaner):
def __init__(self):
super().__init__()
self.topcrashes = None
self.topcrashes_restrictive = None
def description(self):
return "Bugs with missing topcrash keywords"
return "Highlighted topcrash bugs"
def columns(self):
return ["id", "summary", "severity", "actions"]
@ -288,4 +288,4 @@ class TopcrashAddKeyword(BzCleaner):
if __name__ == "__main__":
TopcrashAddKeyword().run()
TopcrashHighlight().run()

Просмотреть файл

@ -157,8 +157,8 @@ python -m auto_nag.scripts.severity_high_compat_priority --production
# Identify missing or inactive team managers
python -m auto_nag.scripts.vacant_team_manager --production
# Add topcrash keywords
python -m auto_nag.scripts.topcrash_add_keyword --production
# Highlight topcrash bugs
python -m auto_nag.scripts.topcrash_highlight --production
# Notify about tracked bugs with no assignee, low severity, or low priority
python -m auto_nag.scripts.tracked_attention --production

Просмотреть файл