diff options
-rw-r--r-- | data/meson.build | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/data/meson.build b/data/meson.build index e25732d..00c868d 100644 --- a/data/meson.build +++ b/data/meson.build @@ -1,13 +1,15 @@ xmllint = find_program('xmllint', required: false) if xmllint.found() test('Valid Locations file', - xmllint, - args: [ - '--path', '@0@'.format(meson.current_source_dir()), - '--noout', - '--valid', - 'Locations.xml', - ]) + xmllint, + args: [ + '--path', '@0@'.format(meson.current_source_dir()), + '--noout', + '--valid', + 'Locations.xml', + ], + suite: ['lint'], + ) endif if pylint.found() @@ -17,6 +19,7 @@ if pylint.found() pylint_flags, gen_locations_variant.full_path(), ], + suite: ['lint'], ) endif |