aboutsummaryrefslogtreecommitdiffstats
path: root/docs/com
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2017-05-11 13:01:16 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2017-05-16 15:01:57 +0200
commit8cfa8d15a572cbae8bd46dae2a19f9b764684a12 (patch)
treec63685f22453173856a940ba2a676868f81e6da4 /docs/com
parent5a9e8f0924daf487c872aab077400df70451813e (diff)
Switch from generate_report to PrettyTable
run_tests.py now relies on PrettyTable as most of the openstack clients. generate_report.py and its related unit tests are simply removed. It sets padding_width=5 in testcase.py too to conform with run_tests.py. Now report is printed in every case. Change-Id: Id9ce93f984503f25d6a2150482f397853fa3dd64 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docs/com')
-rw-r--r--docs/com/pres/framework/framework.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/com/pres/framework/framework.md b/docs/com/pres/framework/framework.md
index 61249e0ea..3c1aae1b8 100644
--- a/docs/com/pres/framework/framework.md
+++ b/docs/com/pres/framework/framework.md
@@ -102,7 +102,6 @@ if result == testcase.TestCase.EX_OK:
if GlobalVariables.REPORT_FLAG:
test_case.push_to_db()
result = test_case.is_successful()
-duration = test_case.get_duration()
```