From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D46CD158041 for ; Tue, 12 Mar 2024 21:43:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17E81E29FA; Tue, 12 Mar 2024 21:43:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EFBA3E29FA for ; Tue, 12 Mar 2024 21:43:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 113CA335C52 for ; Tue, 12 Mar 2024 21:43:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9374FFC2 for ; Tue, 12 Mar 2024 21:43:45 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1710279797.806d0cca43dfbdc124978381305361daf47677cb.sam@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: / X-VCS-Repository: proj/gentoolkit X-VCS-Files: meson.build meson_options.txt X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 806d0cca43dfbdc124978381305361daf47677cb X-VCS-Branch: master Date: Tue, 12 Mar 2024 21:43:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4eb090e9-6a03-4670-9ede-d51efea55141 X-Archives-Hash: 6ed9fc664e4a7bcfc2f47b468e22d6c9 commit: 806d0cca43dfbdc124978381305361daf47677cb Author: Sam James gentoo org> AuthorDate: Tue Mar 12 21:43:17 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 12 21:43:17 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=806d0cca Revert "meson: make tests optional" This reverts commit 988e47557368df49035eeba94beca893f7b267c1. Signed-off-by: Sam James gentoo.org> 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' -)