From 93e91cb0d90325a442a2625589e882c90231acd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B8=D1=82=D0=B0=D0=BB=D0=B8=D0=B9=20=D0=9A=D0=B2?= =?UTF-8?q?=D0=B0=D1=88=D0=B8=D0=BD?= Date: Mon, 19 Aug 2024 13:48:27 +0400 Subject: [PATCH] #24 Skipped musixmatch integration tests --- .../Providers/Musixmatch/MusixmatchProviderTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/LyricsScraperNET.IntegrationTest/Providers/Musixmatch/MusixmatchProviderTest.cs b/Tests/LyricsScraperNET.IntegrationTest/Providers/Musixmatch/MusixmatchProviderTest.cs index 07aa554..1ac2570 100644 --- a/Tests/LyricsScraperNET.IntegrationTest/Providers/Musixmatch/MusixmatchProviderTest.cs +++ b/Tests/LyricsScraperNET.IntegrationTest/Providers/Musixmatch/MusixmatchProviderTest.cs @@ -10,7 +10,7 @@ namespace LyricsScraperNET.IntegrationTest.Providers.Musixmatch { public class MusixmatchProviderTest : ProviderTestBase { - [Theory] + [Theory (Skip="Bug with the infinite requests loop. Should be enabled after https://github.com/skuill/LyricsScraperNET/issues/24")] [MemberData(nameof(GetTestData), parameters: "Providers\\Musixmatch\\lyric_test_data.json")] public void SearchLyric_IntegrationDynamicData_Success(LyricsTestData testData) { @@ -31,7 +31,7 @@ public void SearchLyric_IntegrationDynamicData_Success(LyricsTestData testData) Assert.False(searchResult.Instrumental); } - [Theory] + [Theory(Skip = "Bug with the infinite requests loop. Should be enabled after https://github.com/skuill/LyricsScraperNET/issues/24")] [MemberData(nameof(GetTestData), parameters: "Providers\\Musixmatch\\instrumental_test_data.json")] public void SearchLyric_IntegrationDynamicData_Instrumental(LyricsTestData testData) {