also list addons_extern as testing.

This commit is contained in:
Campbell Barton 2011-11-21 14:19:34 +00:00
parent 0670d6d2fa
commit a03e119db9

@ -146,7 +146,10 @@ def modules(module_cache):
for path in path_list: for path in path_list:
# force all contrib addons to be 'TESTING' # force all contrib addons to be 'TESTING'
force_support = 'TESTING' if path.endswith("addons_contrib") else None if path.endswith("addons_contrib") or path.endswith("addons_extern"):
force_support = 'TESTING'
else:
force_support = None
for mod_name, mod_path in _bpy.path.module_names(path): for mod_name, mod_path in _bpy.path.module_names(path):
modules_stale -= {mod_name} modules_stale -= {mod_name}