Do not scan test logs. Closes #4046.

pull/3520/merge
Jussi Pakkanen 7 years ago
parent 11b520feda
commit e8932adb14
  1. 3
      run_project_tests.py

@ -660,7 +660,8 @@ def check_format():
continue
for fname in files:
if os.path.splitext(fname)[1].lower() in check_suffixes:
if os.path.split(fname)[1] == 'sitemap.txt':
bn = os.path.basename(fname)
if bn == 'sitemap.txt' or bn == 'meson-test-run.txt':
continue
fullname = os.path.join(root, fname)
check_file(fullname)

Loading…
Cancel
Save