PDF Report Plugin — Configuration Reference
Autogenerated from
config.yaml. Do not edit manually.
pdfreport.enabled
Whether to enable PDF report generation. When false, no PDF report will be generated.
Type boolean
Default value true
pdfreport.outputDir
Directory where generated PDF reports will be written. Relative paths are resolved from the working directory.
Type text
Default value .azertio/reports
pdfreport.title
Title displayed in the header of the generated PDF report. Defaults to the project name if not set.
Type text
pdfreport.accentColor
Primary accent color used for report headers, expressed as a hex color (#RRGGBB). Suite header backgrounds, feature accent bars, tag labels and the cover-page band are all derived automatically from this single value. Defaults to dark navy blue.
Type text
pdfreport.logoPath
Path to an image file (PNG or JPEG) to embed as a logo in the report header. If not set, no logo is displayed.
Type text
pdfreport.outputFile
Name pattern for the generated PDF file, relative to outputDir. Supports date tokens: %Y (year), %m (month), %d (day), %h (hour), %M (minute), %s (second).
Type text
Default value %Y%m%d-%h%M%s.pdf
pdfreport.pageBreak
Controls where automatic page breaks are inserted. Accepted values: none, suite, feature, test_case.
- none: no extra page breaks (content flows continuously)
- suite: start each test suite on a new page
- feature: start each feature on a new page
- test_case: start each test case on a new page
Type text
Default value none
pdfreport.footer
Fixed text rendered at the bottom-left of every page. The page number is always shown at the bottom-right. If not set, only the page number is displayed.
Type text
pdfreport.includePassedSteps
Whether to include the detail of passed steps in the report. When false, only failed and errored steps are shown, producing a more concise report.
Type boolean
Default value true