Files

14 lines
273 B
C#
Raw Permalink Normal View History

2024-07-03 16:57:27 -05:00
namespace AnthropicClient.Tests.Examples;
public class ExampleAttribute : FactAttribute
{
public ExampleAttribute()
{
var skipExamples = Environment.GetEnvironmentVariable("SKIP_EXAMPLES");
if (skipExamples == "true")
{
Skip = "Example";
}
}
}