Print the name of faulty jinja templates in pre-commit (#11484)

This commit is contained in:
Max Gautier
2024-08-30 05:43:30 +00:00
committed by GitHub
parent 27c7dc7008
commit b0be5f2dad

View File

@@ -1,9 +1,20 @@
#!/usr/bin/env python
import sys
import traceback
from jinja2 import Environment
from jinja2.exceptions import TemplateSyntaxError
env = Environment()
errors = False
for template in sys.argv[1:]:
with open(template) as t:
env.parse(t.read())
try:
with open(template) as t:
env.parse(t.read())
except TemplateSyntaxError as e:
print (template)
traceback.print_exc()
errors = True
if errors:
exit (1)