14 lines
273 B
C#
14 lines
273 B
C#
namespace AnthropicClient.Tests.Examples;
|
|
|
|
public class ExampleAttribute : FactAttribute
|
|
{
|
|
public ExampleAttribute()
|
|
{
|
|
var skipExamples = Environment.GetEnvironmentVariable("SKIP_EXAMPLES");
|
|
|
|
if (skipExamples == "true")
|
|
{
|
|
Skip = "Example";
|
|
}
|
|
}
|
|
} |