link to issues in muted tests

This commit is contained in:
Brendan Forster
2015-12-14 11:32:38 +10:30
parent 27988a6ea8
commit 31d8a40cc2
4 changed files with 8 additions and 9 deletions
@@ -21,7 +21,7 @@ public class RepositoryDeployKeysClientTests : IDisposable
_context = github.CreateRepositoryContext("public-repo").Result;
}
[IntegrationTest(Skip = "see https://github.com/octokit/octokit.net/issues/533 for the resolution to this failing test")]
[IntegrationTest(Skip = "see https://github.com/octokit/octokit.net/issues/533 for investigating this failing test")]
public async Task CanCreateADeployKey()
{
var deployKey = new NewDeployKey()
@@ -36,7 +36,7 @@ public class RepositoryDeployKeysClientTests : IDisposable
Assert.Equal(_keyTitle, deployKeyResult.Title);
}
[IntegrationTest(Skip = "this test is triggering a validation failure because the key is already in use")]
[IntegrationTest(Skip = "See https://github.com/octokit/octokit.net/issues/1003 for investigating this failing test")]
public async Task CanRetrieveAllDeployKeys()
{
var deployKeys = await _fixture.GetAll(_context.RepositoryOwner, _context.RepositoryName);