diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-20 23:32:55 +0300 | 
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-22 23:22:48 +0300 | 
| commit | 54aed1a92c282b88060a32586d47fd86a4866f03 (patch) | |
| tree | 59cdcebd6d7d075a7145b2e9c3b45692a13ccf06 /run_unittests.py | |
| parent | 6cd71a8033f54fe12e7f2d48fb660fee29e7efb9 (diff) | |
| download | meson-54aed1a92c282b88060a32586d47fd86a4866f03.tar.gz | |
Added "native" kwarg to add_XXX_args. Closes #3669.
Diffstat (limited to 'run_unittests.py')
| -rwxr-xr-x | run_unittests.py | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index 513a11fe8..f4c50a57b 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -664,6 +664,8 @@ class DataTests(unittest.TestCase):          self.assertTrue(snippet_dir.is_dir())          for f in snippet_dir.glob('*'):              self.assertTrue(f.is_file()) +            if f.parts[-1].endswith('~'): +                continue              if f.suffix == '.md':                  with f.open() as snippet:                      for line in snippet:  | 
