From 515916293e64ddaf0ad2c4db9f79b36d66f16bf3 Mon Sep 17 00:00:00 2001 From: Chris Darroch Date: Sat, 15 Aug 2020 00:51:28 -0700 Subject: [PATCH] remove unused func test category exclusion When the temporary clear() calls were removed from the functional test category lists in PR #50 (see commit 7e67496ba5e58502a9982b8c944a9d424fa305e0), this following block to re-exclude tests marked MacOnly became redundant, so we can remove it now. --- Scalar.FunctionalTests/Program.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Scalar.FunctionalTests/Program.cs b/Scalar.FunctionalTests/Program.cs index 6b5d120ef28..ede0481d69e 100644 --- a/Scalar.FunctionalTests/Program.cs +++ b/Scalar.FunctionalTests/Program.cs @@ -102,11 +102,6 @@ public static void Main(string[] args) // with the non-virtualized solution excludeCategories.Add(Categories.NeedsUpdatesForNonVirtualizedMode); - if (!RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) - { - excludeCategories.Add(Categories.MacOnly); - } - ScalarTestConfig.RepoToClone = runner.GetCustomArgWithParam("--repo-to-clone") ?? Properties.Settings.Default.RepoToClone;