This is a simple suggestion to document the existence of the DoNotParallelize attribute somewhere in your doc.
I'm unsure about the exact version, but recent versions of MSTest.TestFramework allow us to specify test parallelization. This breaks Stryker for me. I had to include these lines in my AssemblyInfo.cs:
#if DO_NOT_PARALLELIZE_TEST_FOR_STRYKER
[assembly: DoNotParallelize]
#else
[assembly: Parallelize(Scope = /* Choose your level here */)]
#endif
Thank you for a great product!