commit: 988e47557368df49035eeba94beca893f7b267c1 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Mar 12 21:41:48 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Mar 12 21:41:48 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=988e4755
meson: make tests optional Closes: https://bugs.gentoo.org/926427 Signed-off-by: Greg Kubaryk <greg.kubaryk <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> meson.build | 6 ++++-- meson_options.txt | 4 ++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index c3e83c5..b7b07c1 100644 --- a/meson.build +++ b/meson.build @@ -39,8 +39,10 @@ endif subdir('bin') subdir('pym') -pytest = find_program('pytest') -test('pytest', pytest, args : ['-v', meson.current_source_dir() / 'pym']) +if get_option('tests') + pytest = find_program('pytest') + test('pytest', pytest, args : ['-v', meson.current_source_dir() / 'pym']) +endif if get_option('code-only') subdir_done() diff --git a/meson_options.txt b/meson_options.txt index 265d572..9949cbf 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -13,3 +13,7 @@ option('eprefix', type : 'string', option('docdir', type : 'string', description : 'Documentation directory' ) + +option('tests', type : 'boolean', value: false, + description : 'Enable tests' +)