-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rake aborted! Parallel::DeadWorker: Parallel::DeadWorker on failing Rspec tests #186
Comments
idk why this happens ... also don't have the time to debug this atm, if you find any more insight or even a fix, please update! |
@neuzebeoneclass ever figured out the issue? I'm having the same problem. |
I am also getting the same error
Anyone can help me to resolve this? Thanks in advance..... |
@jmaheshkumar Were you able to solve the issue? I'm having the same issue. Thanks. |
Using browserstack as well. I found this error goes away by changing "in_processes" to "in_threads" in the Parallel.map section of the Rakefile. Not really a solution but good enough for my use case. Nothing else seems to work. Edit: Nvm im still stuck. Threads cause other issues im running into -_-. |
@zmcgugin That's what I did too. |
Cloning directly from https://github.com/browserstack/rspec-browserstack and updating only to use correct BrowserStack credentials, running these tests results in expected behaviour and all tests pass. However if I intentionally make the tests fails eg change
expect(@driver.title).to eql("BrowserStack - Google Search")
to something else like
expect(@driver.title).to eql("NOTBrowserStack - Google Search")
the test fails as expected but then returns the error
rake aborted!
Parallel::DeadWorker: Parallel::DeadWorker
preventing the processes from running any more tests.
The text was updated successfully, but these errors were encountered: