enable_stress_tests.sh 447 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. # Enable S3 Versioning Stress Tests
  3. set -e
  4. # Colors
  5. GREEN='\033[0;32m'
  6. YELLOW='\033[1;33m'
  7. NC='\033[0m'
  8. echo -e "${YELLOW}📚 Enabling S3 Versioning Stress Tests${NC}"
  9. # Disable short mode to enable stress tests
  10. export ENABLE_STRESS_TESTS=true
  11. # Run versioning stress tests
  12. echo -e "${YELLOW}🧪 Running versioning stress tests...${NC}"
  13. make test-versioning-stress
  14. echo -e "${GREEN}✅ Versioning stress tests completed${NC}"