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:
authorBrecht Van Lommel <brecht@blender.org>2020-04-27 18:43:47 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-04-28 13:50:16 +0300
commit6cab53eaaa3abac9778d1c9ab1ac9851bee454a6 (patch)
treead17181fea880cb18058aac2f5f71fac899b0698 /tests/python/bl_constraints.py
parenta7bd8356448efbeb6fc10c0e695f9490219560c5 (diff)
Tests: fix some tests passing even if there are Python errors
Blender was not configured to exit with non-zero return code on Python errors. A bunch of tests worked around this but not all. This removes the need for such workarounds.
Diffstat (limited to 'tests/python/bl_constraints.py')
-rw-r--r--tests/python/bl_constraints.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/tests/python/bl_constraints.py b/tests/python/bl_constraints.py
index 13a431541bc..9fce8acc84e 100644
--- a/tests/python/bl_constraints.py
+++ b/tests/python/bl_constraints.py
@@ -255,12 +255,4 @@ def main():
if __name__ == "__main__":
- import traceback
- # So a python error exits Blender itself too
- try:
- main()
- except SystemExit:
- raise
- except:
- traceback.print_exc()
- sys.exit(1)
+ main()