diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 8ca517d..4a77016 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -9,3 +9,7 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
+ groups:
+ hyperbee:
+ patterns:
+ - "Hyperbee.*"
diff --git a/Directory.Packages.props b/Directory.Packages.props
index 313df33..5966c95 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -16,8 +16,8 @@
-
-
+
+
diff --git a/test/Hyperbee.Templating.Benchmark/AssemblyInfo.cs b/test/Hyperbee.Templating.Benchmark/AssemblyInfo.cs
new file mode 100644
index 0000000..b843f76
--- /dev/null
+++ b/test/Hyperbee.Templating.Benchmark/AssemblyInfo.cs
@@ -0,0 +1,5 @@
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+
+// MSTest requires parallelization to be declared explicitly (MSTEST0001).
+// This assembly hosts benchmarks, which must never run concurrently.
+[assembly: DoNotParallelize]
diff --git a/test/Hyperbee.Templating.Tests/AssemblyInfo.cs b/test/Hyperbee.Templating.Tests/AssemblyInfo.cs
new file mode 100644
index 0000000..5f77211
--- /dev/null
+++ b/test/Hyperbee.Templating.Tests/AssemblyInfo.cs
@@ -0,0 +1,5 @@
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+
+// MSTest requires parallelization to be declared explicitly (MSTEST0001).
+// Tests run sequentially, matching MSTest's behavior before the declaration.
+[assembly: DoNotParallelize]