diff --git a/Promethix.Framework.Ado.Tests/IntegrationTests/AdoScopeSqliteTests.cs b/Promethix.Framework.Ado.Tests/IntegrationTests/AdoScopeSqliteTests.cs index 547242e..d0572c8 100644 --- a/Promethix.Framework.Ado.Tests/IntegrationTests/AdoScopeSqliteTests.cs +++ b/Promethix.Framework.Ado.Tests/IntegrationTests/AdoScopeSqliteTests.cs @@ -278,33 +278,34 @@ public void SqliteAdoScopeTransactionNestedTest() #endregion - [AssemblyCleanup] - public static void AssemblyCleanup() - { - if (File.Exists("mydatabase.db")) - { - File.Delete("mydatabase.db"); - } - - if (File.Exists("mydatabase2.db")) - { - File.Delete("mydatabase2.db"); - } - - if (File.Exists("mydatabase3.db")) - { - File.Delete("mydatabase3.db"); - } - - if (File.Exists("mydatabase4.db")) - { - File.Delete("mydatabase4.db"); - } - - if (File.Exists("mydatabase5.db")) - { - File.Delete("mydatabase5.db"); - } - } + // To be re-instated once sqlite locking issue is resolved + //[AssemblyCleanup] + //public static void AssemblyCleanup() + //{ + // if (File.Exists("mydatabase.db")) + // { + // File.Delete("mydatabase.db"); + // } + + // if (File.Exists("mydatabase2.db")) + // { + // File.Delete("mydatabase2.db"); + // } + + // if (File.Exists("mydatabase3.db")) + // { + // File.Delete("mydatabase3.db"); + // } + + // if (File.Exists("mydatabase4.db")) + // { + // File.Delete("mydatabase4.db"); + // } + + // if (File.Exists("mydatabase5.db")) + // { + // File.Delete("mydatabase5.db"); + // } + //} } }