Currently robotframework-metrics doesn't meet your requirements since it post process output.xml on demand to generate custom report
But we have a work around until i come with idea i.e..,
Create a bat/sh file with robot command and robotmetrics (which executes one after other) and execute bat/sh file
So that robotframework-metrics report will be created after execution!
Note: Im not aware on RED usage
Refer Readme.md for sample - https://github.com/adiralashiva8/robotframework-metrics#generate-robotframework-metrics-after-execution
Even im following above approach in my projects
import os
import subprocess
import sys
ROBOT_LISTENER_API_VERSION = 2
def output_file(path):
command = ['robotmetrics.exe']
subprocess.Popen(command, stdin=subprocess.PIPE)--listener /path/to/the/listener/script/above.py
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/robotframework-users/43612db4-404d-452a-a56f-6590a06b4a46%40googlegroups.com.