summaryrefslogtreecommitdiffstats
path: root/scripts/automation/regression
diff options
context:
space:
mode:
authorYaroslav Brustinov <ybrustin@cisco.com>2016-02-20 20:06:12 +0200
committerYaroslav Brustinov <ybrustin@cisco.com>2016-02-20 20:06:12 +0200
commitbe5fd48f86729b19cb24d18182b90df3580fd285 (patch)
tree700a612e0fee6b1bb4f4d251b3130f352e90f743 /scripts/automation/regression
parent4145ff0ff4b8fbc9c376ab80cb02a8bab34c28bb (diff)
regression: fix args
Diffstat (limited to 'scripts/automation/regression')
-rwxr-xr-xscripts/automation/regression/trex_unit_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/automation/regression/trex_unit_test.py b/scripts/automation/regression/trex_unit_test.py
index be063846..c5108d18 100755
--- a/scripts/automation/regression/trex_unit_test.py
+++ b/scripts/automation/regression/trex_unit_test.py
@@ -213,7 +213,7 @@ if __name__ == "__main__":
CTRexScenario.setup_name = os.path.basename(CTRexScenario.setup_dir)
xml_name = 'report_%s.xml' % CTRexScenario.setup_name
- nose_argv = ['-s', '-v', '--exe', '--rednose', '--detailed-errors']
+ nose_argv = ['--exe', '--rednose', '--detailed-errors']
if '--collect-only' in sys.argv: # this is a user trying simply to view the available tests. no need xunit.
CTRexScenario.is_test_list = True
else:
@@ -237,6 +237,7 @@ if __name__ == "__main__":
nose_argv += ['unit_tests']
if disableLogCapture:
nose_argv += ['--nologcapture']
+ nose_argv += ['-s', '-v']
try:
config_plugin = CTRexTestConfiguringPlugin()