From: Cédric Ollivier Date: Mon, 25 Jan 2021 17:42:13 +0000 (+0100) Subject: Export GINKGO_PARALLEL=y X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=65d860c6ee36641ad7d248f7dc8a6f63f3173301;p=functest-kubernetes.git Export GINKGO_PARALLEL=y It would speedup the testing. Change-Id: I084bcf0d44a060f65eb9549eab8dcbbf5a4cc9d5 Signed-off-by: Cédric Ollivier --- diff --git a/functest_kubernetes/k8stest.py b/functest_kubernetes/k8stest.py index a759dce4..35649edc 100644 --- a/functest_kubernetes/k8stest.py +++ b/functest_kubernetes/k8stest.py @@ -53,8 +53,10 @@ class E2ETesting(testcase.TestCase): ['-non-blocking-taints', os.environ["NON_BLOCKING_TAINTS"]]) cmd_line.extend(['-disable-log-dump', 'true']) self.__logger.info("Starting k8s test: '%s'.", cmd_line) + env = os.environ.copy() + env["GINKGO_PARALLEL"] = 'y' process = subprocess.Popen(cmd_line, stdout=subprocess.PIPE, - stderr=subprocess.STDOUT) + stderr=subprocess.STDOUT, env=env) boutput = process.stdout.read() with open(os.path.join(self.res_dir, 'e2e.log'), 'wb') as foutput: foutput.write(boutput)