From b55b25464618681c24c0f5b9fe22fef2170d039b Mon Sep 17 00:00:00 2001 From: "Sterling G. Baird" Date: Fri, 5 Apr 2024 17:34:10 -0400 Subject: [PATCH] Update test_validate_format.py --- test_validate_format.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_validate_format.py b/test_validate_format.py index 90d7558..f971f64 100644 --- a/test_validate_format.py +++ b/test_validate_format.py @@ -7,9 +7,9 @@ def test_project_files(): errors = [] for file in files: try: - result = validate_file(file) + validate_file(file) except Exception as e: - pass + errors.append(e) assert not errors, "\n".join(errors)