user1732957
user1732957

Reputation: 41

parallel testing with selenium + nose

I am trying to run the functional tests in parallel with multiprocess plugin which gives me random TimeoutException sometimes

my tests are really simple, each of them just goes to a webpage and check if certain element exists.

does anybody know what might be the cause?

thanks

Upvotes: 4

Views: 2031

Answers (1)

ShaunK
ShaunK

Reputation: 106

Try running nosetests with the --process-timeout value set to something higher than your tests would reasonably take:

nosetests --processes=2 --process-timeout=120

Upvotes: 7

Related Questions