summaryrefslogtreecommitdiffstats
path: root/loadtest/TestController.py
diff options
context:
space:
mode:
authorJerry Flood <jf9860@att.com>2017-06-02 16:43:02 -0400
committerJerry Flood <jf9860@att.com>2017-06-05 11:27:41 -0400
commit2dac53acebf05c7edcb9445e454995298f51a0a8 (patch)
tree6db683b8a31b41f4a514c0aa15e5cf788e579abe /loadtest/TestController.py
parent301ac2d31a1e583d2ce594af335a00c7fd83759a (diff)
Externalize soak parameters to a json file
Issue: TEST-38 Change-Id: I90ae5ebaf7cdfed770dfe99c9ae600bb425abadf Signed-off-by: Jerry Flood <jf9860@att.com>
Diffstat (limited to 'loadtest/TestController.py')
-rw-r--r--loadtest/TestController.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/loadtest/TestController.py b/loadtest/TestController.py
index 751b13a..3ba0083 100644
--- a/loadtest/TestController.py
+++ b/loadtest/TestController.py
@@ -23,7 +23,7 @@ class TestController(object):
'''
Constructor
'''
- self.config = TestConfig(duration=options.duration)
+ self.config = TestConfig(duration=options.duration, cyclelength=options.cyclelength, json=options.profile)
logging.info(self.config.to_string())
def execute(self):