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)