diff options
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py index cbc4e3d..c4f14ec 100755 --- a/run_tests.py +++ b/run_tests.py @@ -352,7 +352,7 @@ def check_file(fname): def check_format(): for (root, _, files) in os.walk('.'): for file in files: - if file.endswith('.py') or file.endswith('.build'): + if file.endswith('.py') or file.endswith('.build') or file == 'meson_options.txt': fullname = os.path.join(root, file) check_file(fullname) |