diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-12-16 19:35:34 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-12-16 19:35:34 +0200 |
commit | 83c12edde9b37f46680209123cf301442706a7e7 (patch) | |
tree | acf22ad23ecca33f842893fc161193220ef96a48 /run_project_tests.py | |
parent | c208e81e1a47b54a1efb536e164b06275ddd7cd9 (diff) | |
download | meson-endmessage.zip meson-endmessage.tar.gz meson-endmessage.tar.bz2 |
Add end_message to print status messages on successfull exit.endmessage
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 0d64f47..0245148 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -697,6 +697,8 @@ def check_format(): if '.dub' in root: # external deps are here continue for fname in files: + if fname.startswith('.#') or fname.startswith('#'): # Emacs temp files. + continue if os.path.splitext(fname)[1].lower() in check_suffixes: bn = os.path.basename(fname) if bn == 'sitemap.txt' or bn == 'meson-test-run.txt': |