How to abort RQM execution automatically
Hello,
I'm using RQM execution tool to execute test suites in RQM, but I want to abort execution automatically - aborting the process of RQM execution tool is not enough (ABORT=
ps axf | grep '[j]ava -jar RQMExecutionTool.jar' | grep -v grep | awk '{print "kill -9 " $1}' | sh ).
it's not enough cause I still see the script that was ran from the test script running in the background and the execution still in progress in RQM web.
how do I automatically (REST API etc) terminate an execution properly?
please help!
|
One answer
Unfortunately, there is no way to terminate the execution programmatically. Please open a RQM enhancement for this feature.
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.
Comments
Is it automatically or programmatically? If the test script is still running, how do you determine you should end it? I suppose you should receive some signals or messages from the script already?
I meant programmatically..