From b2856dcbf01be7eb027263c020a6508de34ffacd Mon Sep 17 00:00:00 2001 From: Catherine Diep Date: Thu, 28 Aug 2014 16:24:59 -0700 Subject: [PATCH] Run Tempest tests serially to improve test repeatability. Update to run Tempest test serially. Also update to only run Tempest API tests if user does not pass in testcase name. Change-Id: If5832955ceab2f2649375e0283d638725218d505 --- refstack-client/refstack-client | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/refstack-client/refstack-client b/refstack-client/refstack-client index 400d94d..b4b2350 100755 --- a/refstack-client/refstack-client +++ b/refstack-client/refstack-client @@ -150,11 +150,13 @@ class RefstackClient: # Run the tempest script, specifying the conf file and the # flag telling it to not use a virtual environment. - cmd = (self.tempest_script, '-C', self.conf_file, '-N') + cmd = (self.tempest_script, '-C', self.conf_file, '-N', '-t') # Add the tempest test cases to test as arguments. if self.test_cases: cmd += ('--', self.test_cases) + else: + cmd += ('--', "tempest.api") # If there were two verbose flags, show tempest results. if self.verbose > 1: