├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── SETUP.md ├── pyproject.toml ├── src ├── ReportModifierListener │ ├── ReportModifierListener.py │ └── __init__.py └── reportmodifier │ ├── ReportModifier.py │ ├── ReportModifierVisitor.py │ ├── __init__.py │ ├── __version__.py │ ├── _file_tools.py │ └── _report_configuration.py ├── tasks.py └── tests ├── __init__.py ├── atests ├── additional.yaml ├── basic_config.yaml ├── custom.yaml ├── info.yaml ├── message_by_status.robot ├── message_by_status.yaml ├── structure.yaml ├── test.robot └── two_report_configs.robot ├── rf_cli.args └── utests ├── __init__.py ├── test_report_configuration ├── __init__.py ├── configuration.yaml ├── test_report_configuration.py └── vt.yaml └── test_report_modifier ├── __init__.py ├── test__check_index_relevance.py ├── test_check_name_relevance.py ├── test_check_path_relevance.py ├── test_keyword_name_for_structure_is_relevant.py └── test_message_shall_be_ignored.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/README.md -------------------------------------------------------------------------------- /SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/SETUP.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/ReportModifierListener/ReportModifierListener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/src/ReportModifierListener/ReportModifierListener.py -------------------------------------------------------------------------------- /src/ReportModifierListener/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/src/ReportModifierListener/__init__.py -------------------------------------------------------------------------------- /src/reportmodifier/ReportModifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/src/reportmodifier/ReportModifier.py -------------------------------------------------------------------------------- /src/reportmodifier/ReportModifierVisitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/src/reportmodifier/ReportModifierVisitor.py -------------------------------------------------------------------------------- /src/reportmodifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/src/reportmodifier/__init__.py -------------------------------------------------------------------------------- /src/reportmodifier/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.5" 2 | -------------------------------------------------------------------------------- /src/reportmodifier/_file_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/src/reportmodifier/_file_tools.py -------------------------------------------------------------------------------- /src/reportmodifier/_report_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/src/reportmodifier/_report_configuration.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atests/additional.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/atests/additional.yaml -------------------------------------------------------------------------------- /tests/atests/basic_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/atests/basic_config.yaml -------------------------------------------------------------------------------- /tests/atests/custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/atests/custom.yaml -------------------------------------------------------------------------------- /tests/atests/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/atests/info.yaml -------------------------------------------------------------------------------- /tests/atests/message_by_status.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/atests/message_by_status.robot -------------------------------------------------------------------------------- /tests/atests/message_by_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/atests/message_by_status.yaml -------------------------------------------------------------------------------- /tests/atests/structure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/atests/structure.yaml -------------------------------------------------------------------------------- /tests/atests/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/atests/test.robot -------------------------------------------------------------------------------- /tests/atests/two_report_configs.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/atests/two_report_configs.robot -------------------------------------------------------------------------------- /tests/rf_cli.args: -------------------------------------------------------------------------------- 1 | --loglevel TRACE:DEBUG 2 | --listener RobotStackTracer -------------------------------------------------------------------------------- /tests/utests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utests/test_report_configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utests/test_report_configuration/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/utests/test_report_configuration/configuration.yaml -------------------------------------------------------------------------------- /tests/utests/test_report_configuration/test_report_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/utests/test_report_configuration/test_report_configuration.py -------------------------------------------------------------------------------- /tests/utests/test_report_configuration/vt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/utests/test_report_configuration/vt.yaml -------------------------------------------------------------------------------- /tests/utests/test_report_modifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utests/test_report_modifier/test__check_index_relevance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/utests/test_report_modifier/test__check_index_relevance.py -------------------------------------------------------------------------------- /tests/utests/test_report_modifier/test_check_name_relevance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/utests/test_report_modifier/test_check_name_relevance.py -------------------------------------------------------------------------------- /tests/utests/test_report_modifier/test_check_path_relevance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/utests/test_report_modifier/test_check_path_relevance.py -------------------------------------------------------------------------------- /tests/utests/test_report_modifier/test_keyword_name_for_structure_is_relevant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/utests/test_report_modifier/test_keyword_name_for_structure_is_relevant.py -------------------------------------------------------------------------------- /tests/utests/test_report_modifier/test_message_shall_be_ignored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-reportmodifier/HEAD/tests/utests/test_report_modifier/test_message_shall_be_ignored.py --------------------------------------------------------------------------------