Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
MattEdwardsWaggleBee committed Apr 30, 2024
2 parents ea6ace9 + 9b04fc3 commit 9744426
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using DotNet.Testcontainers.Networks;
//#define INTEGRATIONS
using DotNet.Testcontainers.Networks;
using Hyperbee.Migrations.Integration.Tests.Container.Couchbase;

namespace Hyperbee.Migrations.Integration.Tests;

#if INTEGRATIONS
[TestClass]
public class CouchbaseRunnerTest
{
Expand Down Expand Up @@ -80,3 +82,4 @@ public async Task Should_Fail_WhenMigrationHasLock()
Assert.IsTrue( allStdOut.Contains( "The migration lock is unavailable. Skipping migrations." ) );
}
}
#endif
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
using DotNet.Testcontainers.Networks;
//#define INTEGRATIONS
using DotNet.Testcontainers.Networks;
using Hyperbee.Migrations.Integration.Tests.Container.MongoDb;
using MongoDB.Driver;

namespace Hyperbee.Migrations.Integration.Tests;

#if INTEGRATIONS
[TestClass]
public class MongoDBRunnerTest
{
Expand Down Expand Up @@ -71,3 +73,4 @@ public async Task Should_Fail_WhenMigrationHasLock()
Assert.IsTrue( allStdOut.Contains( "The migration lock is unavailable. Skipping migrations." ) );
}
}
#endif
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
using System.Data;
//#define INTEGRATIONS
using System.Data;
using DotNet.Testcontainers.Networks;
using Hyperbee.Migrations.Integration.Tests.Container.Postgres;

namespace Hyperbee.Migrations.Integration.Tests;

#if INTEGRATIONS
[TestClass]
public class PostgresRunnerTest
{
Expand Down Expand Up @@ -71,3 +73,4 @@ public async Task Should_Fail_WhenMigrationHasLock()
Assert.IsTrue( allStdOut.Contains( "The migration lock is unavailable. Skipping migrations." ) );
}
}
#endif

0 comments on commit 9744426

Please sign in to comment.