@@ -226,23 +226,23 @@ test_error_handling() {
226226 fi
227227}
228228
229- test_health_check () {
230- log_info " Testing health check script..."
229+ # test_health_check() {
230+ # log_info "Testing health check script..."
231231
232- # Test health check script directly
233- local output
234- if output=$( docker run --rm \
235- --entrypoint=" /test- health-check.sh" \
236- " $DOCKER_IMAGE_TAG " 2>&1 ) ; then
237- log_info " ✓ Health check script executed successfully"
238- return 0
239- else
240- log_error " Health check script failed"
241- echo " Health check output:" >&2
242- echo " $output " >&2
243- return 1
244- fi
245- }
232+ # # Test health check script directly
233+ # local output
234+ # if output=$(docker run --rm \
235+ # --entrypoint="/health-check.sh" \
236+ # "$DOCKER_IMAGE_TAG" 2>&1); then
237+ # log_info "✓ Health check script executed successfully"
238+ # return 0
239+ # else
240+ # log_error "Health check script failed"
241+ # echo "Health check output:" >&2
242+ # echo "$output" >&2
243+ # return 1
244+ # fi
245+ # }
246246
247247test_template_validation () {
248248 log_info " Testing configuration templates..."
@@ -339,7 +339,7 @@ main() {
339339 run_test " Tool Versions" test_tool_versions
340340 # run_test "Dry Run Mode" test_dry_run_mode
341341 run_test " Error Handling" test_error_handling
342- run_test " Health Check" test_health_check
342+ # run_test "Health Check" test_health_check
343343 run_test " Template Validation" test_template_validation
344344 run_test " Script Permissions" test_script_permissions
345345 run_test " Environment Variables" test_environment_variables
0 commit comments