Make DB lock validation CI friendly
TaxBaik CI/CD / build-and-deploy (push) Successful in 3m33s

This commit is contained in:
2026-07-07 16:15:46 +09:00
parent 6836bfba48
commit d2d162d58b
3 changed files with 9 additions and 10 deletions
+5
View File
@@ -17,6 +17,11 @@ def main() -> int:
for path in TARGETS:
try:
print(f"checking: {path}")
if not path.exists():
if path.name == "appsettings.Development.json":
print(f"SKIP: {path} not present in this checkout")
continue
raise FileNotFoundError(path)
data = json.loads(path.read_text(encoding="utf-8"))
actual = data["ConnectionStrings"]["Default"]
except Exception as exc: