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:
Diffstat (limited to 'source/tests/bl_run_operators.py')
-rw-r--r--source/tests/bl_run_operators.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/source/tests/bl_run_operators.py b/source/tests/bl_run_operators.py
index 703adafad91..f1f21d3bd71 100644
--- a/source/tests/bl_run_operators.py
+++ b/source/tests/bl_run_operators.py
@@ -28,7 +28,6 @@ import sys
op_blacklist = (
"script.reload",
- "script.reload",
"export*.*",
"import*.*",
"*.save_*",
@@ -70,13 +69,11 @@ def run_ops(operators, setup_func=None):
bpy.ops.wm.read_factory_settings()
setup_func()
- continue
+
for mode in ('EXEC_DEFAULT', 'INVOKE_DEFAULT'):
try:
op(mode)
- #print(" - pass")
except:
- #print(" - fail")
#import traceback
#traceback.print_exc()
pass
@@ -129,8 +126,6 @@ def ctx_editmode_text():
def ctx_editmode_armature():
bpy.ops.object.armature_add()
bpy.ops.object.mode_set(mode='EDIT')
- bpy.ops.armature.select_all(action='TOGGLE')
- bpy.ops.armature.delete()
def ctx_editmode_lattice():