Skip to content

Commit

Permalink
fix: Create temp directory
Browse files Browse the repository at this point in the history
  • Loading branch information
HofmeisterAn committed Oct 18, 2022
1 parent 8661d3b commit accecfe
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ public static class TestcontainersContainerTest
{
private static readonly string TempPath = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString("D"));

static TestcontainersContainerTest()
{
_ = Directory.CreateDirectory(TempPath);
}

[Collection(nameof(Testcontainers))]
public sealed class WithConfiguration
{
Expand Down

0 comments on commit accecfe

Please sign in to comment.