wiprouters

Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
Sébastien Han 2025-11-03 17:06:43 +01:00
parent 357be98279
commit 8df9340dd3
No known key found for this signature in database
155 changed files with 61817 additions and 95863 deletions

File diff suppressed because it is too large Load diff

View file

@ -15,6 +15,7 @@ using multiple validation tools and approaches.
import argparse
import json
import sys
import traceback
from pathlib import Path
from typing import Any
@ -44,6 +45,8 @@ def validate_openapi_schema(schema: dict[str, Any], schema_name: str = "OpenAPI
return False
except Exception as e:
print(f"{schema_name} validation error: {e}")
print(" Traceback:")
traceback.print_exc()
return False