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/bevel_operator.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/bevel_operator.py')
-rw-r--r--tests/python/bevel_operator.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/python/bevel_operator.py b/tests/python/bevel_operator.py
index 3cdbeb9300b..884bd356b96 100644
--- a/tests/python/bevel_operator.py
+++ b/tests/python/bevel_operator.py
@@ -176,9 +176,4 @@ def main():
if __name__ == "__main__":
- try:
- main()
- except:
- import traceback
- traceback.print_exc()
- sys.exit(1)
+ main()