We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf69fbd commit 3e694b9Copy full SHA for 3e694b9
StabilityMatrix.Tests/Models/Packages/PackageLinkTests.cs
@@ -17,7 +17,7 @@ public sealed class PackageLinkTests
17
new() { DefaultRequestHeaders = { { "User-Agent", "StabilityMatrix/2.0" } } };
18
19
private static IEnumerable<object[]> PackagesData =>
20
- PackageHelper.GetPackages().Select(p => new object[] { p });
+ PackageHelper.GetPackages().Where(x => x is not ComfyZluda).Select(p => new object[] { p });
21
22
private static readonly AsyncRetryPolicy<HttpResponseMessage> RetryPolicy = Policy<HttpResponseMessage>
23
.HandleResult(response => response.StatusCode == System.Net.HttpStatusCode.TooManyRequests)
0 commit comments