disable plugin testing by default

This commit is contained in:
Matthias 2021-11-21 00:04:41 +01:00
parent ad76812622
commit 170e0e45e3
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -883,6 +883,6 @@ if DEBUG or TESTING:
PLUGIN_DIRS.append('plugin.samples')
# Plugin test settings
PLUGIN_TESTING = get_setting('PLUGIN_TESTING', TESTING) # are plugins beeing tested?
PLUGIN_TESTING = get_setting('PLUGIN_TESTING', False) # are plugins beeing tested?
PLUGIN_TESTING_SETUP = get_setting('PLUGIN_TESTING_SETUP', False) # load plugins from setup hooks in testing?
PLUGIN_RETRY = get_setting('PLUGIN_RETRY', 5 if not TESTING else 1) # how often should plugin loading be tried?