Reputation: 41
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
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