From f734ff3c810ec777ebf6c2a94142b4030dbd11da Mon Sep 17 00:00:00 2001 From: Chris R Date: Mon, 4 Apr 2016 09:46:21 -0700 Subject: [PATCH] Prevent fuctional tests from executing concurrently. --- test/E2ETests/Properties/AssemblyInfo.cs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/E2ETests/Properties/AssemblyInfo.cs diff --git a/test/E2ETests/Properties/AssemblyInfo.cs b/test/E2ETests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..b1fa884228 --- /dev/null +++ b/test/E2ETests/Properties/AssemblyInfo.cs @@ -0,0 +1,3 @@ +using Xunit; + +[assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly)] \ No newline at end of file