From 10cc4ae8f194d804d222b081d6a34e6782a88deb Mon Sep 17 00:00:00 2001 From: dclipca Date: Wed, 1 Jan 2025 22:08:16 +0200 Subject: [PATCH] disable parallelization via DisableTestParallelization = true (triggers too many requests in integration tests) --- FakeYouSharp.Tests/AssemblyInfo.cs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 FakeYouSharp.Tests/AssemblyInfo.cs diff --git a/FakeYouSharp.Tests/AssemblyInfo.cs b/FakeYouSharp.Tests/AssemblyInfo.cs new file mode 100644 index 0000000..7db8497 --- /dev/null +++ b/FakeYouSharp.Tests/AssemblyInfo.cs @@ -0,0 +1,3 @@ +using Xunit; + +[assembly: CollectionBehavior(DisableTestParallelization = true)] \ No newline at end of file