diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-02-10 15:04:52 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-02-10 15:04:52 +0000 |
commit | 08cefb0e7490dd229eed93a556591c1993eee07b (patch) | |
tree | 7c3a36630e336d393a955d19f5e8069fd7949258 /templates | |
parent | d7485e7632c3625a6c179e12cecbc5b0c1bb73bd (diff) | |
download | Smarker-08cefb0e7490dd229eed93a556591c1993eee07b.tar.gz Smarker-08cefb0e7490dd229eed93a556591c1993eee07b.zip |
added getting full runtime analysis output
Diffstat (limited to 'templates')
-rw-r--r-- | templates/txt.jinja2 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/txt.jinja2 b/templates/txt.jinja2 index df63288..b27abda 100644 --- a/templates/txt.jinja2 +++ b/templates/txt.jinja2 @@ -125,6 +125,12 @@ Report generated at {{ get_datetime() }} {%- endfor -%} {%- endif -%} {%- endfor -%} + {%- if txt_show_all_run_output == "True" %} + Full runtime output: + ``` + {{ runtime_contents["full_output"]|indent(20, False) }} + ``` + {%- endif -%} {%- endfor -%} {%- endif -%} {%- endif -%} |