mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-10 11:06:42 +00:00
16 lines
412 B
C#
16 lines
412 B
C#
using NUnit.Framework;
|
|
|
|
namespace DistTestCore
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
public class DontDownloadLogsAndMetricsOnFailureAttribute : PropertyAttribute
|
|
{
|
|
public const string DontDownloadKey = "DontDownloadLogsAndMetrics";
|
|
|
|
public DontDownloadLogsAndMetricsOnFailureAttribute()
|
|
: base(DontDownloadKey)
|
|
{
|
|
}
|
|
}
|
|
}
|