Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-11-21 18:19:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-21 18:19:34 +0400
commita03e119db9d0e9524e802562f6b7fbcc022e7278 (patch)
tree19503b15288b6576db27859d50709fbe2c1e63da /release/scripts/modules/addon_utils.py
parent0670d6d2fa109f49ad64535c722087b489b45d3b (diff)
also list addons_extern as testing.
Diffstat (limited to 'release/scripts/modules/addon_utils.py')
-rw-r--r--release/scripts/modules/addon_utils.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/release/scripts/modules/addon_utils.py b/release/scripts/modules/addon_utils.py
index 1bd218ad92a..bcde4ce1e18 100644
--- a/release/scripts/modules/addon_utils.py
+++ b/release/scripts/modules/addon_utils.py
@@ -146,7 +146,10 @@ def modules(module_cache):
for path in path_list:
# 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):
modules_stale -= {mod_name}