[Bf-blender-cvs] [74a48dc] testbuild: Tests: remove support.run_unittest

Campbell Barton noreply at git.blender.org
Fri Aug 22 15:13:37 CEST 2014


Commit: 74a48dcf435e52de686d26af183df1f2a3622dc8
Author: Campbell Barton
Date:   Thu Aug 21 19:55:52 2014 +1000
Branches: testbuild
https://developer.blender.org/rB74a48dcf435e52de686d26af183df1f2a3622dc8

Tests: remove support.run_unittest

===================================================================

M	tests/python/bl_pyapi_units.py

===================================================================

diff --git a/tests/python/bl_pyapi_units.py b/tests/python/bl_pyapi_units.py
index a09a25e..128cc10 100644
--- a/tests/python/bl_pyapi_units.py
+++ b/tests/python/bl_pyapi_units.py
@@ -1,8 +1,7 @@
 # Apache License, Version 2.0
 
-# ./blender.bin --background -noaudio --python tests/python/bl_pyapi_units.py
+# ./blender.bin --background -noaudio --python tests/python/bl_pyapi_units.py -- --verbose
 import unittest
-from test import support
 
 from bpy.utils import units
 
@@ -70,16 +69,7 @@ class UnitsTesting(unittest.TestCase):
                                 "\"%s\", expected \"%s\"" % (usys, utype, val, prec, sep, compat, opt_str, output))
 
 
-def test_main():
-    try:
-        support.run_unittest(UnitsTesting)
-    except:
-        import traceback
-        traceback.print_exc()
-
-        # alert CTest we failed
-        import sys
-        sys.exit(1)
-
 if __name__ == '__main__':
-    test_main()
+    import sys
+    sys.argv = [__file__] + (sys.argv[sys.argv.index("--") + 1:] if "--" in sys.argv else [])
+    unittest.main()




More information about the Bf-blender-cvs mailing list