Skip integration tests we expected to fail in CI
This commit is contained in:
Родитель
f42816755f
Коммит
6d76fb9a1f
|
@ -40,7 +40,7 @@ namespace Steeltoe.CloudFoundry.Connector.Test.Cache
|
|||
Assert.Equal("Redis health check failed", status.Description);
|
||||
}
|
||||
|
||||
[Fact/*(Skip = "Integration test - Requires local server")*/]
|
||||
[Fact(Skip = "Integration test - Requires local server")]
|
||||
public void StackExchange_Is_Connected_Returns_Up_Status()
|
||||
{
|
||||
// arrange
|
||||
|
@ -75,7 +75,7 @@ namespace Steeltoe.CloudFoundry.Connector.Test.Cache
|
|||
Assert.Equal("Redis health check failed", status.Description);
|
||||
}
|
||||
|
||||
[Fact/*(Skip = "Integration test - Requires local server")*/]
|
||||
[Fact(Skip = "Integration test - Requires local server")]
|
||||
public void Microsoft_Is_Connected_Returns_Up_Status()
|
||||
{
|
||||
// arrange
|
||||
|
|
|
@ -43,7 +43,7 @@ namespace Steeltoe.CloudFoundry.Connector.Test.Queue
|
|||
Assert.Equal("Failed to open RabbitMQ connection!", status.Description);
|
||||
}
|
||||
|
||||
[Fact/*(Skip = "Integration test - Requires local RMQ server")*/]
|
||||
[Fact(Skip = "Integration test - Requires local RMQ server")]
|
||||
public void Is_Connected_Returns_Up_Status()
|
||||
{
|
||||
// arrange
|
||||
|
|
|
@ -49,7 +49,7 @@ namespace Steeltoe.CloudFoundry.Connector.Test.Relational
|
|||
Assert.Contains(status.Details.Keys, k => k == "error");
|
||||
}
|
||||
|
||||
[Fact/*(Skip = "Integration test - requires local db server")*/]
|
||||
[Fact(Skip = "Integration test - requires local db server")]
|
||||
public void Sql_Is_Connected_Returns_Up_Status()
|
||||
{
|
||||
// arrange
|
||||
|
@ -86,7 +86,7 @@ namespace Steeltoe.CloudFoundry.Connector.Test.Relational
|
|||
Assert.Contains(status.Details.Keys, k => k == "error");
|
||||
}
|
||||
|
||||
[Fact/*(Skip = "Integration test - requires local db server")*/]
|
||||
[Fact(Skip = "Integration test - requires local db server")]
|
||||
public void MySql_Is_Connected_Returns_Up_Status()
|
||||
{
|
||||
// arrange
|
||||
|
@ -123,7 +123,7 @@ namespace Steeltoe.CloudFoundry.Connector.Test.Relational
|
|||
Assert.Contains(status.Details.Keys, k => k == "error");
|
||||
}
|
||||
|
||||
[Fact/*(Skip = "Integration test - requires local db server")*/]
|
||||
[Fact(Skip = "Integration test - requires local db server")]
|
||||
public void PostgreSql_Is_Connected_Returns_Up_Status()
|
||||
{
|
||||
// arrange
|
||||
|
|
Загрузка…
Ссылка в новой задаче