Hi, I have some integration tests which I don't want to be run in parallel, using xunit -
I have :
[assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly, DisableTestParallelization = true, MaxParallelThreads = 1)]
Which works fine with most runners, but it seems that NCrunch doesn't pick up on it - is that by design?
Thanks!
Kieren