use testing by default

This commit is contained in:
Matthias 2021-11-21 00:56:00 +01:00
parent be5289ba0f
commit e1dd7a17f2
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', False) # are plugins beeing tested?
PLUGIN_TESTING = get_setting('PLUGIN_TESTING', TESTING) # 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?