diff options
author | 2016-03-10 19:32:29 +0200 | |
---|---|---|
committer | 2016-03-10 19:32:29 +0200 | |
commit | 71433c48afeddb37e3c5a8e134e701d71b09f869 (patch) | |
tree | 860cab39c447a426287d0c49a4c0da736297ba3b /scripts/automation/regression/functional_unit_tests.py | |
parent | 2be2f7e96be26fbe6dd6763f2ec97fb248abb330 (diff) | |
parent | f24d22eb359753255527430cb8a8b759a424a0df (diff) |
merge doc
Diffstat (limited to 'scripts/automation/regression/functional_unit_tests.py')
-rwxr-xr-x | scripts/automation/regression/functional_unit_tests.py | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/scripts/automation/regression/functional_unit_tests.py b/scripts/automation/regression/functional_unit_tests.py deleted file mode 100755 index 30e915c4..00000000 --- a/scripts/automation/regression/functional_unit_tests.py +++ /dev/null @@ -1,78 +0,0 @@ -#!/router/bin/python - -__copyright__ = "Copyright 2014" - - - -import os -import sys -import outer_packages -import nose -from nose.plugins import Plugin -import logging -from rednose import RedNose -import termstyle - - - - -def set_report_dir (report_dir): - if not os.path.exists(report_dir): - os.mkdir(report_dir) - -if __name__ == "__main__": - - # setting defaults. By default we run all the test suite - specific_tests = False - disableLogCapture = False - long_test = False - report_dir = "reports" - - nose_argv= sys.argv + ['-s', '-v', '--exe', '--rednose', '--detailed-errors'] - -# for arg in sys.argv: -# if 'unit_tests/' in arg: -# specific_tests = True -# if 'log-path' in arg: -# disableLogCapture = True -# if arg=='--collect-only': # this is a user trying simply to view the available tests. removing xunit param from nose args -# nose_argv[5:7] = [] - - - - try: - result = nose.run(argv = nose_argv, addplugins = [RedNose()]) - - if (result == True): - print termstyle.green(""" - ..::''''::.. - .;'' ``;. - :: :: :: :: - :: :: :: :: - :: :: :: :: - :: .:' :: :: `:. :: - :: : : :: - :: `:. .:' :: - `;..``::::''..;' - ``::,,,,::'' - - ___ ___ __________ - / _ \/ _ | / __/ __/ / - / ___/ __ |_\ \_\ \/_/ - /_/ /_/ |_/___/___(_) - - """) - sys.exit(0) - else: - sys.exit(-1) - - finally: - pass - - - - - - - - |