From fa2ab90f8b7b8576139ea5bea6380cd02c8f58c0 Mon Sep 17 00:00:00 2001 From: jaredcnance Date: Tue, 10 Jul 2018 06:47:05 -0500 Subject: [PATCH] fix(#337): run tests serially this is because we made the ContextGraph a static instance...if C# ever supports interfaced statics, we could swap the IContextGraph source when the test assembly starts executing --- test/UnitTests/xunit.runner.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 test/UnitTests/xunit.runner.json diff --git a/test/UnitTests/xunit.runner.json b/test/UnitTests/xunit.runner.json new file mode 100644 index 0000000000..9db029ba52 --- /dev/null +++ b/test/UnitTests/xunit.runner.json @@ -0,0 +1,4 @@ +{ + "parallelizeAssembly": false, + "parallelizeTestCollections": false +}