From 7ef925752cbfad510197197b5317d8cc4fd55c17 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 21 Aug 2014 19:55:52 +1000 Subject: Tests: remove support.run_unittest --- tests/python/bl_pyapi_units.py | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'tests/python') diff --git a/tests/python/bl_pyapi_units.py b/tests/python/bl_pyapi_units.py index a09a25e4b71..128cc100b25 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() -- cgit v1.2.3