tests: Updates and fixes for tests, changing master to main and adding flaky tests marker (#2511)

This commit is contained in:
Chris Simpson
2022-07-25 16:36:09 +01:00
committed by GitHub
parent 9af552eeaa
commit 5fe3ea82f0
36 changed files with 494 additions and 491 deletions
@@ -0,0 +1,13 @@
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
{
}
}