Skip to content

Commit b9a5e89

Browse files
committed
Enable ubuntu skip
1 parent ed3fc9c commit b9a5e89

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Testing/src/xunit/SkipOnHelixAttribute.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ private bool ShouldSkip()
5757
return true;
5858
}
5959

60+
if (Queues.Contains("All.Ubuntu") && targetQueue.StartsWith("ubuntu", StringComparison.OrdinalIgnoreCase))
61+
{
62+
return true;
63+
}
64+
6065
return Queues.ToLowerInvariant().Split(';').Contains(targetQueue);
6166
}
6267

0 commit comments

Comments
 (0)