From c8c6a3f816ffd124570395ba51d910f1b6a923f0 Mon Sep 17 00:00:00 2001 From: Mathieu Pillard Date: Mon, 25 Mar 2024 13:40:04 +0100 Subject: [PATCH] Add docstring --- src/olympia/core/apps.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/olympia/core/apps.py b/src/olympia/core/apps.py index 629b3f2cf149..e0e675d7b028 100644 --- a/src/olympia/core/apps.py +++ b/src/olympia/core/apps.py @@ -17,6 +17,8 @@ class CustomTags(Tags): @register(CustomTags.custom_setup) def uwsgi_check(app_configs, **kwargs): + """Custom check triggered when ./manage.py check is ran (should be done + as part of verifying the docker image in CI).""" errors = [] command = ['uwsgi', '--version'] result = subprocess.run(command, capture_output=True)