Disable Testcontainers tests for CI build

This commit is contained in:
Mark van Renswoude 2022-11-21 17:10:48 +01:00
parent 178f0a4956
commit 35bd5e920d
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,6 @@
using System;
// Do not include in the Release build for AppVeyor due to the Docker requirement
#if DEBUG
using System;
using System.Threading.Tasks;
using Docker.DotNet;
using Docker.DotNet.Models;
@ -77,3 +79,4 @@ namespace Tapeti.Tests.Client
}
}
}
#endif

View File

@ -1,4 +1,6 @@
using System.Threading;
// Do not include in the Release build for AppVeyor due to the Docker requirement
#if DEBUG
using System.Threading;
using System.Threading.Tasks;
using FluentAssertions;
using Tapeti.Connection;
@ -73,3 +75,4 @@ namespace Tapeti.Tests.Client
}
}
}
#endif