I'm having strange issue with my parallel test execution in AWS VM. Look at the image for my Profile.
I've added yellow highlighted line for Transformation . Initially i diden't had that line but tests were not not running in Parallel so i have done some reaserach and found that if we relocate config then it will solve the issue. so i did and it worked .But problem now is it is not relocating profile back and tests are keep staying on the steps until second image with yellow highlighted.
When i go to that box and see any running processes then Specrun.ConsoleRunner.exe process is sitting there without doing anything and if i kill that than it will go ahead and make the build fail .
help me to find the solution for it .
From looking at your post, it appears that you are using the default thread isolation (AppDomain). You could try changing the isolation setting, in case you are deadlocking yourself at the moment. To do so, you can add an environment tag to your profile similar to the following:
<Environment apartmentState="Unknown" framework="Net40" platform="x86" testThreadIsolation="Process"/>
It would also be interesting to know if you are only having this issue on you VM, or if this issue also occurs on a "normal" machine.
It would also be great if you could include the output from the SpecRun console to help us try and narrow down the cause. It does appear that you are somehow locking up the tests.