Skip some tests on Helix
This commit is contained in:
parent
ce636c5afb
commit
54b506e572
|
|
@ -76,7 +76,7 @@ namespace Microsoft.Extensions.Logging.Testing.Tests
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/19683")]
|
||||||
public Task TestLogWritesToGlobalLogFile() =>
|
public Task TestLogWritesToGlobalLogFile() =>
|
||||||
RunTestLogFunctionalTest((tempDir) =>
|
RunTestLogFunctionalTest((tempDir) =>
|
||||||
{
|
{
|
||||||
|
|
@ -120,7 +120,7 @@ namespace Microsoft.Extensions.Logging.Testing.Tests
|
||||||
", testLogContent, ignoreLineEndingDifferences: true);
|
", testLogContent, ignoreLineEndingDifferences: true);
|
||||||
});
|
});
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/19683")]
|
||||||
public Task TestLogTruncatesTestNameToAvoidLongPaths() =>
|
public Task TestLogTruncatesTestNameToAvoidLongPaths() =>
|
||||||
RunTestLogFunctionalTest((tempDir) =>
|
RunTestLogFunctionalTest((tempDir) =>
|
||||||
{
|
{
|
||||||
|
|
@ -147,7 +147,7 @@ namespace Microsoft.Extensions.Logging.Testing.Tests
|
||||||
Assert.Equal(longTestName.Substring(longTestName.Length - testFileName.Length / 2, testFileName.Length / 2), testFileName.Substring(testFileName.Length - testFileName.Length / 2, testFileName.Length / 2));
|
Assert.Equal(longTestName.Substring(longTestName.Length - testFileName.Length / 2, testFileName.Length / 2), testFileName.Substring(testFileName.Length - testFileName.Length / 2, testFileName.Length / 2));
|
||||||
});
|
});
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/19683")]
|
||||||
public Task TestLogEnumerateFilenamesToAvoidCollisions() =>
|
public Task TestLogEnumerateFilenamesToAvoidCollisions() =>
|
||||||
RunTestLogFunctionalTest((tempDir) =>
|
RunTestLogFunctionalTest((tempDir) =>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue