From 5b3c9e262bd56cddac699bf480b96940ee3acf6a Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 20 Mar 2016 22:52:46 +0200 Subject: [PATCH] Check option files too. --- run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.py b/run_tests.py index cbc4e3d19..c4f14ec3f 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)