From d51226f79643393b134126283aa26325aabef746 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 2 Aug 2024 16:29:34 +0700 Subject: [PATCH] Ignoring a number of the long-running tests A couple are still being executed on the server --- SIL.WritingSystems.Tests/SldrTests.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/SIL.WritingSystems.Tests/SldrTests.cs b/SIL.WritingSystems.Tests/SldrTests.cs index db8cd7cc6..cff4632a7 100644 --- a/SIL.WritingSystems.Tests/SldrTests.cs +++ b/SIL.WritingSystems.Tests/SldrTests.cs @@ -155,6 +155,7 @@ public void GetLdmlFile_LanguageTagWithSuppressedScript_DownloadsFile() #region SLDR cache [Test] + [Category("SkipOnTeamCity")] public void GetLdmlFile_CacheFileWithUid_StatusFileFromSldrCache() { using var environment = new TestEnvironment(); @@ -182,6 +183,7 @@ public void GetLdmlFile_CacheFileWithUid_StatusFileFromSldrCache() } [Test] + [Category("SkipOnTeamCity")] public void GetLdmlFile_CacheFileWithUidUnknown_StatusFileFromSldrCache() { using var environment = new TestEnvironment(); @@ -249,6 +251,7 @@ public void GetLdmlFile_SldrCacheDestinationPath_ReturnsCacheFile() } [Test] + [Category("SkipOnTeamCity")] public void GetLdmlFile_SldrStagingEnvironmentVariable_UsesStagingUrl() { var originalStagingValue = Environment.GetEnvironmentVariable(Sldr.SldrStaging); @@ -283,6 +286,7 @@ public void GetLdmlFile_NotModified_DoesntDownloadNewFile() [Test] [Category("LongRunning")] // ~2 minutes [Category("ByHand")] // The following test tests a smaller sample each checkin; this can be used when a larger sample needs to be tested. + [Category("SkipOnTeamCity")] public void GetLdmlFile_GetsValidLDML([Values("false", "true")] string isStaging, [Values("ar", "az", "bn", "de", "en", "es", "en-GB", "fa", "fr", "hi", "hu", "id", "km", "ko", "ml", "ms", "my", "ne", "pt", "ru", "rw", "sw", "ta", "te", "th", "tr", "ur", "vi", "zh", "zh-CN")] string ietfLanguageTag) @@ -291,6 +295,7 @@ public void GetLdmlFile_GetsValidLDML([Values("false", "true")] string isStaging } [Test] + [Category("SkipOnTeamCity")] public void GetLdmlFile_GetsValidLDML([Values("ar", "en", "fr", "ko", "sw")] string ietfLanguageTag) { DownloadAndVerifyLDML("false", ietfLanguageTag);