-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmoduletester.ini
More file actions
83 lines (64 loc) · 2.47 KB
/
moduletester.ini
File metadata and controls
83 lines (64 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# ModuleTester configuration for the Example Calculator project.
#
# This file is read by ModuleTester when loading a test suite for the
# example_calculator package. Place it at the root of the package directory
# (next to __init__.py).
#
# See moduletester/config.py for the full list of configuration options.
[general]
# Format used for parsing test docstrings.
# Supported values: "rst" (reStructuredText), "md" (Markdown)
docstring_fmt = rst
# Default test category filter used when discovering tests.
# Supported values: "all", "visible", "batch"
# - "all" : every discovered test script
# - "visible" : tests marked with "# guitest: show" (default)
# - "batch" : tests intended for unattended execution
category = visible
[export]
# Relative path (from this .ini file) to the directory containing
# Jinja2 templates and assets used for report generation.
template_dir = tests/templates
# Name of the Jinja2 template used for test results (RTV) reports.
test_results_template_name = test_results_template.j2
# Name of the Jinja2 template used for test list (DTV) reports.
test_list_template_name = test_list_template.j2
# Reference document for DOCX export (styles and formatting).
docx_reference = custom-reference.docx
# Reference document for ODT export (styles and formatting).
odt_reference = custom-reference.odt
# CSS stylesheet applied to HTML exports.
css_style = default_style.css
# Comma-separated list of export formats to generate.
# Supported values: html, docx
export_fmts = html
# If 1, Jinja2 templates are reloaded from disk on every export
# (useful during template development).
reload_templates_on_export = 0
# Number of heading levels to shift when embedding docstrings in reports.
# For example, 3 means an RST "=" heading becomes an <h4>.
docstrings_header_shift = 3
# Depth of the table of contents in generated reports.
toc_depth = 2
[gui]
# Visibility and position of each ModuleTester GUI panel.
# Visibility: 1 = visible, 0 = hidden
# Position: "left", "right", "top", "bottom"
# Test list panel (tree of discovered tests)
test_list_visible = 1
test_list_pos = left
# Test properties panel (metadata of the selected test)
test_props_visible = 0
test_props_pos = right
# Result tab panel (execution output)
result_tab_visible = 1
result_tab_pos = bottom
# Result properties panel (details of test result)
result_props_visible = 1
result_props_pos = bottom
# CLI output panel
cli_visible = 0
cli_pos = bottom
# Toolbox panel
toolbox_visible = 0
toolbox_pos = bottom