From ba263187a5ad3a8b3291a537f8b0247662b58951 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 28 Feb 2022 00:35:36 +0100 Subject: [PATCH] optimise coverage --- InvenTree/plugin/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugin/apps.py b/InvenTree/plugin/apps.py index a10618e2be..75063c6b3c 100644 --- a/InvenTree/plugin/apps.py +++ b/InvenTree/plugin/apps.py @@ -39,5 +39,5 @@ class PluginAppConfig(AppConfig): # check git version registry.git_is_modern = check_git_version() - if not registry.git_is_modern: + if not registry.git_is_modern: # pragma: no cover # simulating old git seems not worth it for coverage log_error(_('Your enviroment has an outdated git version. This prevents InvenTree from loading plugin details.'), 'load')