2023-04-13 09:53:54 +00:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
2023-04-14 07:54:07 +00:00
|
|
|
|
namespace DistTestCore.Logs
|
2023-04-13 09:53:54 +00:00
|
|
|
|
{
|
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
|
|
|
public class DontDownloadLogsAndMetricsOnFailureAttribute : PropertyAttribute
|
|
|
|
|
{
|
|
|
|
|
public const string DontDownloadKey = "DontDownloadLogsAndMetrics";
|
|
|
|
|
|
|
|
|
|
public DontDownloadLogsAndMetricsOnFailureAttribute()
|
|
|
|
|
: base(DontDownloadKey)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|