aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py2
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)