mirror of
https://github.com/bitwarden/server.git
synced 2024-11-28 13:15:12 +01:00
231eb84e69
* Turn on ImplicitUsings * Fix formatting * Run linter
15 lines
395 B
C#
15 lines
395 B
C#
namespace Bit.Core.Test.AutoFixture.Attributes
|
|
{
|
|
public sealed class CiSkippedTheory : Xunit.TheoryAttribute
|
|
{
|
|
private static bool IsGithubActions() => Environment.GetEnvironmentVariable("CI") != null;
|
|
public CiSkippedTheory()
|
|
{
|
|
if (IsGithubActions())
|
|
{
|
|
Skip = "Ignore during CI builds";
|
|
}
|
|
}
|
|
}
|
|
}
|