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-03-22 17:37:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-22 17:37:45 +0300
commit287a185e909bf833414e14a50864e8cd0f80f0b8 (patch)
treebce9f5c9733e1dfbcc2c75652d8bb1a8b5ca5fc5 /source/tests
parentf40d33f24b85a1c1e0e8d8cb0e42146ebcdef5a9 (diff)
found text editor X/Y selections coords were booleans and corrections to operator calling script from last commit.
Diffstat (limited to 'source/tests')
-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():