We are using Jenkins for the Continuous Integration.
I have also created a Jenkins job for robot framework test cases. But am facing an issue while running robot framework test cases using Jenkins.
Say, if I have to include around 300 test cases in Jenkins job for robot framework, while running the test cases, if any of the test case fails, then the remaining test scripts will not be get executed.
For example : while running the test cases , if 10th test case fails, then the remaining 290 test cases will not be get executed !
Is there any better option in Jenkins to run all test cases in a concurrent manner ? - So that failure of any test cases will not effect the execution of other test cases !
My only requirement is - All the test cases listed in Jenkins job must be get executed even if any test cases got failed in between.
Can you please suggest a solution for this issue ?
Do I have to include any other plugins for this ?

pybot /path/to/test/case.I just created a single job which contains 300 shells ( each executing a commandpybot ........) . Is it the right way to create a Jenkins job for this purpose ? & "any one test case fails" means if any of the test case fails (pybot ....), the remaining shells will not be get executed. - Arun Ramachandran