I am tring to run the SoapUI TestRunner via a commandline in Jenkins. This is the SoapUI TestRunner commandline:
"/home/able/readyapi/installation/bin/testrunner.sh" -spayments-chain -r -a -j -f${WORKSPACE} "-RJUnit-Style HTML Report" -FXML -Enn-0716 "-TTestCase jenkins_test" /home/able/jenkins/workspace/REGRESSION_0716/test_automation
I generated a shell script in Jenkins' Pipeline Syntax leading to this shell script:
sh script: '"/home/able/readyapi/installation/bin/testrunner.sh" -spayments-chain -r -a -j -f${WORKSPACE} "-RJUnit-Style HTML Report" -FXML -Enn-0716 "-TTestCase jenkins_test" /home/able/jenkins/workspace/REGRESSION_0716/test_automation'
This gets me the following error:
sh: 0: Can't open script:
Can I anybody tell me with this information what I am doing wrong? Please let me know if you need more info. I am not very familiar with linux and shell.