This is a utility to generate both Rich CLI and Markdown formatted output for the following test frameworks:
- Robot Framework
pip install -r requirements.txt
python3 parser.py --help
Usage: parser.py [OPTIONS]
╭─ Options ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ * --framework [robot] Test Framework: [robot] for Robot framework [required] │
│ * --file PATH Path to test output file [required] │
│ * --output [cli|markdown] Output Method: [cli] for rich command-line output [markdown] for markdown formatted tables [required] │
│ --help Show this message and exit. │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
python3 parser.py --framework robot --file <path-to-output.xml> --output cli
python3 parser.py --framework robot --file <path-to-output.xml> --output markdown
- Nick Thompson <@nsthompson>