diff --git a/.github/workflows/speed-comparison.yml b/.github/workflows/speed-comparison.yml
index eed61a52cd..07aff6692e 100644
--- a/.github/workflows/speed-comparison.yml
+++ b/.github/workflows/speed-comparison.yml
@@ -47,6 +47,6 @@ jobs:
run: dotnet build -c Release
working-directory: "tools/speed-comparison/MSTestTimer"
- - name: Run Pipeline
+ - name: Run Benchmark
run: dotnet run -c Release
- working-directory: "tools/speed-comparison/TUnit.SpeedComparison.Pipeline/TUnit.SpeedComparison.Pipeline"
+ working-directory: "tools/speed-comparison/Tests.Benchmark"
diff --git a/Directory.Packages.props b/Directory.Packages.props
index 2a2dedd366..89854273f3 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -4,6 +4,7 @@
+
@@ -25,14 +26,14 @@
-
-
-
+
+
+
-
+
diff --git a/tools/Directory.Build.props b/tools/Directory.Build.props
new file mode 100644
index 0000000000..c1df2220dd
--- /dev/null
+++ b/tools/Directory.Build.props
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/tools/speed-comparison/MSTestTimer/MSTestTimer/Tests.cs b/tools/speed-comparison/MSTestTimer/MSTestTimer/Tests.cs
index 35bf8b7afe..55b508d3f4 100644
--- a/tools/speed-comparison/MSTestTimer/MSTestTimer/Tests.cs
+++ b/tools/speed-comparison/MSTestTimer/MSTestTimer/Tests.cs
@@ -1,24 +1,8 @@
-using System.Diagnostics;
-
namespace MSTestTimer;
[TestClass]
public class Tests
{
- private static readonly Stopwatch Stopwatch = new();
-
- [ClassInitialize]
- public static void Setup(TestContext _)
- {
- Stopwatch.Start();
- }
-
- [ClassCleanup]
- public static void Cleanup()
- {
- Console.WriteLine(Stopwatch.Elapsed);
- }
-
[TestMethod]
[DynamicData(nameof(Repeat), DynamicDataSourceType.Method)]
public async Task TestMethod1(int _)
@@ -28,9 +12,6 @@ public async Task TestMethod1(int _)
public static IEnumerable