mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
14 lines
431 B
C#
14 lines
431 B
C#
using System;
|
|
|
|
namespace Octokit.Tests.Integration
|
|
{
|
|
/// <summary>
|
|
/// A potentially flaky test could be:
|
|
/// * Calls for details of repositories which already exist and was not created by the test itself (so could disappear over time)
|
|
/// * Calls for details of users which already exist (so could disappear over time)
|
|
/// </summary>
|
|
public class PotentiallyFlakyTestAttribute : Attribute
|
|
{
|
|
}
|
|
}
|