From 806d0cca43dfbdc124978381305361daf47677cb Mon Sep 17 00:00:00 2001 From: Sam James Date: Tue, 12 Mar 2024 21:43:17 +0000 Subject: Revert "meson: make tests optional" This reverts commit 988e47557368df49035eeba94beca893f7b267c1. Signed-off-by: Sam James --- meson.build | 6 ++---- meson_options.txt | 4 ---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/meson.build b/meson.build index b7b07c1..c3e83c5 100644 --- a/meson.build +++ b/meson.build @@ -39,10 +39,8 @@ endif subdir('bin') subdir('pym') -if get_option('tests') - pytest = find_program('pytest') - test('pytest', pytest, args : ['-v', meson.current_source_dir() / 'pym']) -endif +pytest = find_program('pytest') +test('pytest', pytest, args : ['-v', meson.current_source_dir() / 'pym']) if get_option('code-only') subdir_done() diff --git a/meson_options.txt b/meson_options.txt index 9949cbf..265d572 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -13,7 +13,3 @@ option('eprefix', type : 'string', option('docdir', type : 'string', description : 'Documentation directory' ) - -option('tests', type : 'boolean', value: false, - description : 'Enable tests' -) -- cgit v1.2.3-65-gdbad