fix(classic): skip S3 tests in CI due to MinIO compatibility issues

This commit is contained in:
Nick Tindle
2026-02-12 16:11:39 -06:00
parent 1480183c47
commit 24b38f2cdd

View File

@@ -11,6 +11,13 @@ from .s3 import S3FileStorage, S3FileStorageConfiguration
if not (os.getenv("S3_ENDPOINT_URL") and os.getenv("AWS_ACCESS_KEY_ID")):
pytest.skip("S3 environment variables are not set", allow_module_level=True)
# Skip in CI due to moto/MinIO compatibility issues with Content-MD5 header
if os.getenv("CI") == "true":
pytest.skip(
"S3 tests skipped in CI due to MinIO Content-MD5 compatibility issues",
allow_module_level=True,
)
@pytest.fixture
def s3_bucket_name() -> str: