From a3072faf1cba7b75897553c39c54ef028c4ff2f7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 8 Sep 2022 12:20:17 -0400 Subject: Only run REUSE test in strict mode --- meson.build | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/meson.build b/meson.build index a5198fe..ee4f444 100644 --- a/meson.build +++ b/meson.build @@ -335,20 +335,22 @@ endif # Tests # ######### -# Check release metadata -if not meson.is_subproject() and get_option('strict') - autoship = find_program('autoship', required: false) - if autoship.found() - test('autoship', autoship, args: ['test', suil_src_root], suite: 'data') +if get_option('strict') + # Check release metadata + if not meson.is_subproject() + autoship = find_program('autoship', required: false) + if autoship.found() + test('autoship', autoship, args: ['test', suil_src_root], suite: 'data') + endif endif -endif -# Check licensing metadata -reuse = find_program('reuse', required: false) -if reuse.found() - test('REUSE', reuse, - args: ['--root', suil_src_root, 'lint'], - suite: 'data') + # Check licensing metadata + reuse = find_program('reuse', required: false) + if reuse.found() + test('REUSE', reuse, + args: ['--root', suil_src_root, 'lint'], + suite: 'data') + endif endif ################# -- cgit v1.2.1