From 3bb3507c97c6d36324c728fc1a617a7b3d286b40 Mon Sep 17 00:00:00 2001 From: Ilya Shakhat Date: Fri, 19 Aug 2016 17:22:22 +0300 Subject: [PATCH] Doc update Change-Id: I8d0c6789b5b2d866430a6941460f02c762874b6d --- README.rst | 25 +++++++++++-------------- shaker/engine/server.py | 1 + 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/README.rst b/README.rst index bd6130c..3305fac 100644 --- a/README.rst +++ b/README.rst @@ -12,17 +12,15 @@ to execute. Additionally tests may be tuned dynamically in command-line. Features -------- - - * User-defined topology via Heat templates - * Simultaneously test execution on multiple instances - * Interactive report with stats and charts - * Built-in SLA verification +* User-defined topology via Heat templates +* Simultaneously test execution on multiple instances +* Interactive report with stats and charts +* Built-in SLA verification Deployment Requirements ----------------------- - - * Shaker server routable from OpenStack cloud - * Admin-user access to OpenStack API is preferable +* Shaker server routable from OpenStack cloud +* Admin-user access to OpenStack API is preferable Run in Python Environment ------------------------- @@ -46,7 +44,7 @@ Full list of parameters is available in `documentation `_ .. code-block:: bash @@ -64,8 +62,7 @@ where: Links ----- - - * PyPi - https://pypi.python.org/pypi/pyshaker/ - * Docker - https://hub.docker.com/r/shakhat/shaker/ - * Docs - http://pyshaker.readthedocs.io/ - * Bugtracker - https://launchpad.net/shaker/ +* PyPi - https://pypi.python.org/pypi/pyshaker/ +* Docker - https://hub.docker.com/r/shakhat/shaker/ +* Docs - http://pyshaker.readthedocs.io/ +* Bugtracker - https://launchpad.net/shaker/ diff --git a/shaker/engine/server.py b/shaker/engine/server.py index 43a18a5..b87b256 100644 --- a/shaker/engine/server.py +++ b/shaker/engine/server.py @@ -276,6 +276,7 @@ def act(): aggregated = utils.merge_dicts(outputs) utils.write_file(json.dumps(aggregated, indent=2), cfg.CONF.output) + LOG.info('Raw output is stored to: %s', cfg.CONF.output) report.generate_report(aggregated, cfg.CONF.report_template, cfg.CONF.report, cfg.CONF.subunit, cfg.CONF.book)