I am about to run parallel tests on my automation project (I am using Jbehave), but I would like to know if I need create a session management (Thread managements) in my code or if Jenkins can do this for me. Thank you !
Asked
Active
Viewed 137 times
2 Answers
0

mahinlma
- 1,208
- 3
- 11
- 24
-
Thanks !! So, I don't need to code anything, just install the plugins ? – rafazzevedo Aug 02 '15 at 19:14
-
You don't need write any code ,when using Multijob . but in build flow you should use some dsl scripts. – mahinlma Aug 03 '15 at 04:04
-
dsl script example - build("jobname") – mahinlma Aug 03 '15 at 04:06
0
You can run both sequential and parallel jobs with the help of build flow job.
example:
pipeline job:
build("job1")
build("job2")
parallel job:
parallel(
build("job1")
build("job2")
)

mahinlma
- 1,208
- 3
- 11
- 24