aboutsummaryrefslogtreecommitdiffstats
path: root/functest
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2018-04-13 15:47:37 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-04-13 15:47:37 +0000
commit1c221c4c2a88830d448f4d396cc0534fa41988b6 (patch)
tree212f44edee750af53ca1a43f9e6bff3e05661f81 /functest
parentfd179d2ab3b10be932a4030ac47a8bee5f666bc4 (diff)
parent6834c086671ad9cef79eb962ea8031235ac81334 (diff)
Merge "Pass kwargs in TempestCommon:configure()" into stable/fraser
Diffstat (limited to 'functest')
-rw-r--r--functest/opnfv_tests/openstack/tempest/tempest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/tempest.py b/functest/opnfv_tests/openstack/tempest/tempest.py
index 74ddbd981..22cb64c6b 100644
--- a/functest/opnfv_tests/openstack/tempest/tempest.py
+++ b/functest/opnfv_tests/openstack/tempest/tempest.py
@@ -268,7 +268,7 @@ class TempestCommon(testcase.TestCase):
def run(self, **kwargs):
self.start_time = time.time()
try:
- self.configure()
+ self.configure(**kwargs)
self.generate_test_list()
self.apply_tempest_blacklist()
self.run_verifier_tests()