Here is the below script file, I want to run in robot tests
import os
def ps_kill():
os.system(' command')
ps_kill()
And below is my test
*** Settings ***
Library SeleniumLibrary
Library Process
*** Test Cases ***
Test case 1
[Documentation] Running a command
[Tags] Cur
Launch py File
${result} = run process python /path/ps_kill.py
After ran the test it just pass but not run the script.
