You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead fake passes --parallel and so the tests run in parallel.
Workaround 1:
Fake.DotNet.Testing.Expecto.run (fun o ->{o with Parallel =false})[ testExe ]
Workaround 2:
in the c# test-exe:
args=args.Except(new[]{"--parallel"}).ToArray();
Fix:
This would be a breaking change, but the proper fix would be to make the properties Options. If they are not set, they stay at None and are not passed to the exe.
The text was updated successfully, but these errors were encountered:
Unittest DLL:
Fake script:
Expected:
Just logically speaking, I have set parallel to false in the exe, have not specified anything in my script, so I expect it to run serially.
Actual:
command-line:
Instead fake passes
--parallel
and so the tests run in parallel.Workaround 1:
Workaround 2:
in the c# test-exe:
Fix:
This would be a breaking change, but the proper fix would be to make the properties Options. If they are not set, they stay at None and are not passed to the exe.
The text was updated successfully, but these errors were encountered: