From ca07c5f12cdf515e8ff11d0a40ac9a4dc19bac1b Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 13 Feb 2022 05:16:29 +0100 Subject: [PATCH] imports are not tested --- 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 7af7ce9a7c..dd75e3c8fb 100644 --- a/InvenTree/plugin/apps.py +++ b/InvenTree/plugin/apps.py @@ -21,7 +21,7 @@ class PluginAppConfig(AppConfig): def ready(self): if settings.PLUGINS_ENABLED: - if isImportingData(): + if isImportingData(): # pragma: no cover logger.info('Skipping plugin loading for data import') else: logger.info('Loading InvenTree plugins')