DEV: Improve isolation and concurrency for minio-based upload specs (#29216)

- Uses a temporary, clean, per-test-process directory for minio data
- Runs a separate minio instance for each test process
- Unskips minio-based tests in CI
This commit is contained in:
David Taylor
2024-10-16 10:40:58 +01:00
committed by GitHub
parent e5f2416eff
commit 78ed8ede8a
2 changed files with 10 additions and 7 deletions

View File

@ -144,13 +144,6 @@ module SystemHelpers
end
def skip_unless_s3_system_specs_enabled!
if ENV["CI"]
return(
skip(
"S3 system specs are temporarily disabled in this environment to address parallel spec issues",
)
)
end
if !ENV["CI"] && !ENV["RUN_S3_SYSTEM_SPECS"]
skip(
"S3 system specs are disabled in this environment, set CI=1 or RUN_S3_SYSTEM_SPECS=1 to enable them.",