mirror of
https://github.com/bitwarden/server.git
synced 2024-12-04 14:13:28 +01:00
17 lines
411 B
C#
17 lines
411 B
C#
|
using System;
|
||
|
|
||
|
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";
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|