diff --git a/appveyor.yml b/appveyor.yml index 122b20fab..55c7f8764 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -35,6 +35,7 @@ init: - git config --global core.autocrlf input - SET PATH=%POSTGRES_PATH%\bin;%MYSQL_PATH%\bin;%PATH% - net start MSSQL$SQL2019 + - docker run -d -p 3050:3050 --name Dapper.Tests.Firebird -e FIREBIRD_DATABASE=database -e ISC_PASSWORD=masterkey jacobalberty/firebird nuget: disable_publish_on_pr: true diff --git a/benchmarks/Dapper.Tests.Performance/Dapper.Tests.Performance.csproj b/benchmarks/Dapper.Tests.Performance/Dapper.Tests.Performance.csproj index 914104e50..cc8e8c22d 100644 --- a/benchmarks/Dapper.Tests.Performance/Dapper.Tests.Performance.csproj +++ b/benchmarks/Dapper.Tests.Performance/Dapper.Tests.Performance.csproj @@ -14,7 +14,7 @@ - + diff --git a/tests/Dapper.Tests/Dapper.Tests.csproj b/tests/Dapper.Tests/Dapper.Tests.csproj index 35af8a509..667814dd7 100644 --- a/tests/Dapper.Tests/Dapper.Tests.csproj +++ b/tests/Dapper.Tests/Dapper.Tests.csproj @@ -14,7 +14,7 @@ - + diff --git a/tests/Dapper.Tests/Providers/FirebirdTests.cs b/tests/Dapper.Tests/Providers/FirebirdTests.cs index ae383b7fb..7aa689404 100644 --- a/tests/Dapper.Tests/Providers/FirebirdTests.cs +++ b/tests/Dapper.Tests/Providers/FirebirdTests.cs @@ -15,7 +15,7 @@ public class FirebirdTests : TestBase { private FbConnection GetOpenFirebirdConnection() => (FbConnection)Provider.GetOpenConnection(); - [Fact(Skip = "Bug in Firebird; a PR to fix it has been submitted")] + [Fact] public void Issue178_Firebird() { using (var connection = GetOpenFirebirdConnection())