0

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 !

rafazzevedo
  • 390
  • 2
  • 12

2 Answers2

0

Use Following plugins to achieve your task:

Build Flow Plugin

Multijob plugin

mahinlma
  • 1,208
  • 3
  • 11
  • 24
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