Skip to content

Commit

Permalink
Review with Devin Part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
malhotrashivam committed May 15, 2024
1 parent 40cea5e commit cf4e8ff
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,16 @@
import io.deephaven.extensions.s3.testlib.SingletonContainers.MinIO;
import io.deephaven.extensions.s3.testlib.SingletonContainers;
import io.deephaven.stats.util.OSUtil;
import org.junit.Assume;
import org.junit.BeforeClass;
import software.amazon.awssdk.services.s3.S3AsyncClient;

import static org.junit.Assert.assertFalse;

public class S3ParquetMinIOTest extends S3ParquetTestBase {

@BeforeClass
public static void initContainer() {
// TODO(deephaven-core#5116): MinIO testcontainers does not work on OS X
assertFalse("OSUtil.runningMacOS()", OSUtil.runningMacOS());
Assume.assumeFalse("OSUtil.runningMacOS()", OSUtil.runningMacOS());
// ensure container is started so container startup time isn't associated with a specific test
MinIO.init();
}
Expand Down

0 comments on commit cf4e8ff

Please sign in to comment.