Jinja Reporter
ReportJinja
¶
ReportJinja(template_path: Path)
Report builder based on a Jinja2 template.
render
¶
render(
data: list[dict[str, Any]],
*,
trim_blocks: bool = True,
lstrip_blocks: bool = True
) -> str
Build a report based on a Jinja2 template.
Report is built based on a J2 template provided by user. Data structure sent to template is:
Example
>>> print(ResultManager.json)
[
{
name: ...,
test: ...,
result: ...,
messages: [...]
categories: ...,
description: ...,
}
]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
list[dict[str, Any]]
|
List of results from |
required |
trim_blocks
|
bool
|
enable trim_blocks for J2 rendering. |
True
|
lstrip_blocks
|
bool
|
enable lstrip_blocks for J2 rendering. |
True
|
Returns:
Type | Description |
---|---|
str
|
Rendered template |
Source code in anta/reporter/__init__.py
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
|