From nobody Mon May 13 13:42:35 2024 Delivered-To: importer@patchew.org Received-SPF: none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) client-ip=8.43.85.245; envelope-from=devel-bounces@lists.libvirt.org; helo=lists.libvirt.org; Authentication-Results: mx.zohomail.com; spf=none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) smtp.mailfrom=devel-bounces@lists.libvirt.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.libvirt.org (lists.libvirt.org [8.43.85.245]) by mx.zohomail.com with SMTPS id 1701278780163388.6634389931286; Wed, 29 Nov 2023 09:26:20 -0800 (PST) Received: by lists.libvirt.org (Postfix, from userid 996) id 9DDF11AC6; Wed, 29 Nov 2023 12:26:19 -0500 (EST) Received: from lists.libvirt.org (localhost [IPv6:::1]) by lists.libvirt.org (Postfix) with ESMTP id 45AE81ADF; Wed, 29 Nov 2023 12:18:45 -0500 (EST) Received: by lists.libvirt.org (Postfix, from userid 996) id 9CCF61A8C; Wed, 29 Nov 2023 12:18:38 -0500 (EST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.libvirt.org (Postfix) with ESMTPS id EE5551A71 for ; Wed, 29 Nov 2023 12:18:37 -0500 (EST) Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-395-VMKTq_iQMF2tLm-sxt0L2g-1; Wed, 29 Nov 2023 12:18:35 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id C24131C05151 for ; Wed, 29 Nov 2023 17:18:34 +0000 (UTC) Received: from harajuku.usersys.redhat.com.homenet.telecomitalia.it (unknown [10.45.226.119]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5A4D940C6EBA for ; Wed, 29 Nov 2023 17:18:34 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on lists.libvirt.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,T_SCC_BODY_TEXT_LINE autolearn=unavailable autolearn_force=no version=3.4.4 X-MC-Unique: VMKTq_iQMF2tLm-sxt0L2g-1 From: Andrea Bolognani To: devel@lists.libvirt.org Subject: [libvirt PATCH 1/5] rpcgen: Don't skip all tests when pytest is missing Date: Wed, 29 Nov 2023 18:18:28 +0100 Message-ID: <20231129171832.756282-2-abologna@redhat.com> In-Reply-To: <20231129171832.756282-1-abologna@redhat.com> References: <20231129171832.756282-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.2 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Message-ID-Hash: 6VYXIV6KMSAPDDVZR33AVLOZAKNE7UQ5 X-Message-ID-Hash: 6VYXIV6KMSAPDDVZR33AVLOZAKNE7UQ5 X-MailFrom: abologna@redhat.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-config-1; header-match-config-2; header-match-config-3; header-match-devel.lists.libvirt.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.2 Precedence: list List-Id: Development discussions about the libvirt library & tools Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="utf-8"; x-default="true" Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1701278780900000001 Some of the files used by test_demo.c can only be regenerated when pytest is present, but we have pre-generated copies in the repository, so overall we just need the C compiler to build and run that specific test program. Signed-off-by: Andrea Bolognani Reviewed-by: Michal Privoznik --- scripts/rpcgen/meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/rpcgen/meson.build b/scripts/rpcgen/meson.build index 65236457be..20e4c06dbc 100644 --- a/scripts/rpcgen/meson.build +++ b/scripts/rpcgen/meson.build @@ -1,8 +1,7 @@ subdir('rpcgen') +subdir('tests') =20 if pytest_prog.found() - subdir('tests') - test( 'rpcgen-pytest', python3_prog, --=20 2.43.0 _______________________________________________ Devel mailing list -- devel@lists.libvirt.org To unsubscribe send an email to devel-leave@lists.libvirt.org From nobody Mon May 13 13:42:35 2024 Delivered-To: importer@patchew.org Received-SPF: none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) client-ip=8.43.85.245; envelope-from=devel-bounces@lists.libvirt.org; helo=lists.libvirt.org; Authentication-Results: mx.zohomail.com; spf=none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) smtp.mailfrom=devel-bounces@lists.libvirt.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.libvirt.org (lists.libvirt.org [8.43.85.245]) by mx.zohomail.com with SMTPS id 1701279010378121.49822193492662; Wed, 29 Nov 2023 09:30:10 -0800 (PST) Received: by lists.libvirt.org (Postfix, from userid 996) id 9BBC21AB1; Wed, 29 Nov 2023 12:30:09 -0500 (EST) Received: from lists.libvirt.org (localhost [IPv6:::1]) by lists.libvirt.org (Postfix) with ESMTP id 0C5921B25; Wed, 29 Nov 2023 12:18:52 -0500 (EST) Received: by lists.libvirt.org (Postfix, from userid 996) id 81CE01A71; Wed, 29 Nov 2023 12:18:39 -0500 (EST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.libvirt.org (Postfix) with ESMTPS id 142821A8B for ; Wed, 29 Nov 2023 12:18:37 -0500 (EST) Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-463-E09S91ChO2a9asDswsORwg-1; Wed, 29 Nov 2023 12:18:35 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 733A7185A788 for ; Wed, 29 Nov 2023 17:18:35 +0000 (UTC) Received: from harajuku.usersys.redhat.com.homenet.telecomitalia.it (unknown [10.45.226.119]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0CAA440C6EBA for ; Wed, 29 Nov 2023 17:18:34 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on lists.libvirt.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,T_SCC_BODY_TEXT_LINE autolearn=unavailable autolearn_force=no version=3.4.4 X-MC-Unique: E09S91ChO2a9asDswsORwg-1 From: Andrea Bolognani To: devel@lists.libvirt.org Subject: [libvirt PATCH 2/5] rpcgen: Organize meson tests into suites Date: Wed, 29 Nov 2023 18:18:29 +0100 Message-ID: <20231129171832.756282-3-abologna@redhat.com> In-Reply-To: <20231129171832.756282-1-abologna@redhat.com> References: <20231129171832.756282-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.2 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Message-ID-Hash: OKIEJXBSVEWCXBCKWXCXLVFAJUOBC2A2 X-Message-ID-Hash: OKIEJXBSVEWCXBCKWXCXLVFAJUOBC2A2 X-MailFrom: abologna@redhat.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-config-1; header-match-config-2; header-match-config-3; header-match-devel.lists.libvirt.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.2 Precedence: list List-Id: Development discussions about the libvirt library & tools Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="utf-8"; x-default="true" Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1701279011567000001 These are currently the only tests that are not part of any suite. Signed-off-by: Andrea Bolognani Reviewed-by: Michal Privoznik --- scripts/rpcgen/meson.build | 1 + scripts/rpcgen/tests/meson.build | 1 + 2 files changed, 2 insertions(+) diff --git a/scripts/rpcgen/meson.build b/scripts/rpcgen/meson.build index 20e4c06dbc..d8d0e03784 100644 --- a/scripts/rpcgen/meson.build +++ b/scripts/rpcgen/meson.build @@ -8,6 +8,7 @@ if pytest_prog.found() args: [ '-mpytest' ] + rpcgen_tests, env: runutf8, workdir: meson.current_source_dir(), + suite: 'script', ) endif =20 diff --git a/scripts/rpcgen/tests/meson.build b/scripts/rpcgen/tests/meson.= build index dfd757de7c..10f504dab2 100644 --- a/scripts/rpcgen/tests/meson.build +++ b/scripts/rpcgen/tests/meson.build @@ -20,4 +20,5 @@ test( 'test_demo', test_demo, workdir: meson.current_source_dir(), + suite: 'bin', ) --=20 2.43.0 _______________________________________________ Devel mailing list -- devel@lists.libvirt.org To unsubscribe send an email to devel-leave@lists.libvirt.org From nobody Mon May 13 13:42:35 2024 Delivered-To: importer@patchew.org Received-SPF: none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) client-ip=8.43.85.245; envelope-from=devel-bounces@lists.libvirt.org; helo=lists.libvirt.org; Authentication-Results: mx.zohomail.com; spf=none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) smtp.mailfrom=devel-bounces@lists.libvirt.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.libvirt.org (lists.libvirt.org [8.43.85.245]) by mx.zohomail.com with SMTPS id 1701278886268268.26813082422996; Wed, 29 Nov 2023 09:28:06 -0800 (PST) Received: by lists.libvirt.org (Postfix, from userid 996) id 5D15B1AF5; Wed, 29 Nov 2023 12:28:05 -0500 (EST) Received: from lists.libvirt.org (localhost [IPv6:::1]) by lists.libvirt.org (Postfix) with ESMTP id 33F261B1A; Wed, 29 Nov 2023 12:18:50 -0500 (EST) Received: by lists.libvirt.org (Postfix, from userid 996) id 33B82188C; Wed, 29 Nov 2023 12:18:39 -0500 (EST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.libvirt.org (Postfix) with ESMTPS id 0646D1A88 for ; Wed, 29 Nov 2023 12:18:37 -0500 (EST) Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-620-zY2p-4q4MWmWp2UR98nFRQ-1; Wed, 29 Nov 2023 12:18:36 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 255E4811E86 for ; Wed, 29 Nov 2023 17:18:36 +0000 (UTC) Received: from harajuku.usersys.redhat.com.homenet.telecomitalia.it (unknown [10.45.226.119]) by smtp.corp.redhat.com (Postfix) with ESMTPS id B2AD940C6EBA for ; Wed, 29 Nov 2023 17:18:35 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on lists.libvirt.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,T_SCC_BODY_TEXT_LINE autolearn=unavailable autolearn_force=no version=3.4.4 X-MC-Unique: zY2p-4q4MWmWp2UR98nFRQ-1 From: Andrea Bolognani To: devel@lists.libvirt.org Subject: [libvirt PATCH 3/5] rpcgen: Skip tests if tests are disabled Date: Wed, 29 Nov 2023 18:18:30 +0100 Message-ID: <20231129171832.756282-4-abologna@redhat.com> In-Reply-To: <20231129171832.756282-1-abologna@redhat.com> References: <20231129171832.756282-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.2 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Message-ID-Hash: XC7LUICUZ6XNA6V2SMKX5MIMHXC6EIGN X-Message-ID-Hash: XC7LUICUZ6XNA6V2SMKX5MIMHXC6EIGN X-MailFrom: abologna@redhat.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-config-1; header-match-config-2; header-match-config-3; header-match-devel.lists.libvirt.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.2 Precedence: list List-Id: Development discussions about the libvirt library & tools Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="utf-8"; x-default="true" Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1701278887223000001 Signed-off-by: Andrea Bolognani Reviewed-by: Michal Privoznik --- scripts/rpcgen/meson.build | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/scripts/rpcgen/meson.build b/scripts/rpcgen/meson.build index d8d0e03784..9e766a2a37 100644 --- a/scripts/rpcgen/meson.build +++ b/scripts/rpcgen/meson.build @@ -1,15 +1,18 @@ subdir('rpcgen') -subdir('tests') =20 -if pytest_prog.found() - test( - 'rpcgen-pytest', - python3_prog, - args: [ '-mpytest' ] + rpcgen_tests, - env: runutf8, - workdir: meson.current_source_dir(), - suite: 'script', - ) +if tests_enabled[0] + subdir('tests') + + if pytest_prog.found() + test( + 'rpcgen-pytest', + python3_prog, + args: [ '-mpytest' ] + rpcgen_tests, + env: runutf8, + workdir: meson.current_source_dir(), + suite: 'script', + ) + endif endif =20 rpcgen_prog =3D find_program('main.py') --=20 2.43.0 _______________________________________________ Devel mailing list -- devel@lists.libvirt.org To unsubscribe send an email to devel-leave@lists.libvirt.org From nobody Mon May 13 13:42:35 2024 Delivered-To: importer@patchew.org Received-SPF: none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) client-ip=8.43.85.245; envelope-from=devel-bounces@lists.libvirt.org; helo=lists.libvirt.org; Authentication-Results: mx.zohomail.com; spf=none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) smtp.mailfrom=devel-bounces@lists.libvirt.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.libvirt.org (lists.libvirt.org [8.43.85.245]) by mx.zohomail.com with SMTPS id 1701279100335945.9252262161941; Wed, 29 Nov 2023 09:31:40 -0800 (PST) Received: by lists.libvirt.org (Postfix, from userid 996) id A53B11AB2; Wed, 29 Nov 2023 12:31:39 -0500 (EST) Received: from lists.libvirt.org (localhost [IPv6:::1]) by lists.libvirt.org (Postfix) with ESMTP id 6F05C1B2A; Wed, 29 Nov 2023 12:18:53 -0500 (EST) Received: by lists.libvirt.org (Postfix, from userid 996) id 968FD1A8A; Wed, 29 Nov 2023 12:18:40 -0500 (EST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.libvirt.org (Postfix) with ESMTPS id BD476188C for ; Wed, 29 Nov 2023 12:18:39 -0500 (EST) Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-207-gFx-nSv_P5egjbjAwJUGCw-1; Wed, 29 Nov 2023 12:18:37 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id CB51E863E81 for ; Wed, 29 Nov 2023 17:18:36 +0000 (UTC) Received: from harajuku.usersys.redhat.com.homenet.telecomitalia.it (unknown [10.45.226.119]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 646ED40C6EBA for ; Wed, 29 Nov 2023 17:18:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on lists.libvirt.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,T_SCC_BODY_TEXT_LINE autolearn=unavailable autolearn_force=no version=3.4.4 X-MC-Unique: gFx-nSv_P5egjbjAwJUGCw-1 From: Andrea Bolognani To: devel@lists.libvirt.org Subject: [libvirt PATCH 4/5] rpcgen: Reformat meson files Date: Wed, 29 Nov 2023 18:18:31 +0100 Message-ID: <20231129171832.756282-5-abologna@redhat.com> In-Reply-To: <20231129171832.756282-1-abologna@redhat.com> References: <20231129171832.756282-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.2 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Message-ID-Hash: FLRUZSGZIEHK3AECFJHN6QHYTVZEO44K X-Message-ID-Hash: FLRUZSGZIEHK3AECFJHN6QHYTVZEO44K X-MailFrom: abologna@redhat.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-config-1; header-match-config-2; header-match-config-3; header-match-devel.lists.libvirt.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.2 Precedence: list List-Id: Development discussions about the libvirt library & tools Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="utf-8"; x-default="true" Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1701279102059000001 Signed-off-by: Andrea Bolognani Reviewed-by: Michal Privoznik --- scripts/rpcgen/meson.build | 16 ++++++++-------- scripts/rpcgen/rpcgen/meson.build | 10 +++++----- scripts/rpcgen/tests/meson.build | 30 +++++++++++++++--------------- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/scripts/rpcgen/meson.build b/scripts/rpcgen/meson.build index 9e766a2a37..7a8d505c61 100644 --- a/scripts/rpcgen/meson.build +++ b/scripts/rpcgen/meson.build @@ -4,14 +4,14 @@ if tests_enabled[0] subdir('tests') =20 if pytest_prog.found() - test( - 'rpcgen-pytest', - python3_prog, - args: [ '-mpytest' ] + rpcgen_tests, - env: runutf8, - workdir: meson.current_source_dir(), - suite: 'script', - ) + test( + 'rpcgen-pytest', + python3_prog, + args: [ '-mpytest' ] + rpcgen_tests, + env: runutf8, + workdir: meson.current_source_dir(), + suite: 'script', + ) endif endif =20 diff --git a/scripts/rpcgen/rpcgen/meson.build b/scripts/rpcgen/rpcgen/meso= n.build index 5a0f59eecf..9cd3e2e273 100644 --- a/scripts/rpcgen/rpcgen/meson.build +++ b/scripts/rpcgen/rpcgen/meson.build @@ -1,7 +1,7 @@ rpcgen_src =3D files([ - 'ast.py', - 'lexer.py', - 'generator.py', - 'parser.py', - 'visitor.py', + 'ast.py', + 'lexer.py', + 'generator.py', + 'parser.py', + 'visitor.py', ]) diff --git a/scripts/rpcgen/tests/meson.build b/scripts/rpcgen/tests/meson.= build index 10f504dab2..057a61433d 100644 --- a/scripts/rpcgen/tests/meson.build +++ b/scripts/rpcgen/tests/meson.build @@ -1,24 +1,24 @@ rpcgen_tests =3D files([ - 'test_generator.py', - 'test_lexer.py', - 'test_parser.py', + 'test_generator.py', + 'test_lexer.py', + 'test_parser.py', ]) =20 =20 test_demo =3D executable( - 'test_demo', - [ 'test_demo.c' ], - c_args: [ - '-Dabs_srcdir=3D"@0@"'.format(meson.current_source_dir()), - ] + cc_flags_relaxed_frame_limit, - dependencies: [ - xdr_dep, glib_dep - ], + 'test_demo', + [ 'test_demo.c' ], + c_args: [ + '-Dabs_srcdir=3D"@0@"'.format(meson.current_source_dir()), + ] + cc_flags_relaxed_frame_limit, + dependencies: [ + xdr_dep, glib_dep + ], ) =20 test( - 'test_demo', - test_demo, - workdir: meson.current_source_dir(), - suite: 'bin', + 'test_demo', + test_demo, + workdir: meson.current_source_dir(), + suite: 'bin', ) --=20 2.43.0 _______________________________________________ Devel mailing list -- devel@lists.libvirt.org To unsubscribe send an email to devel-leave@lists.libvirt.org From nobody Mon May 13 13:42:35 2024 Delivered-To: importer@patchew.org Received-SPF: none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) client-ip=8.43.85.245; envelope-from=devel-bounces@lists.libvirt.org; helo=lists.libvirt.org; Authentication-Results: mx.zohomail.com; spf=none (zohomail.com: 8.43.85.245 is neither permitted nor denied by domain of lists.libvirt.org) smtp.mailfrom=devel-bounces@lists.libvirt.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.libvirt.org (lists.libvirt.org [8.43.85.245]) by mx.zohomail.com with SMTPS id 1701279443880303.0863608495397; Wed, 29 Nov 2023 09:37:23 -0800 (PST) Received: by lists.libvirt.org (Postfix, from userid 996) id 080FB1B02; Wed, 29 Nov 2023 12:37:23 -0500 (EST) Received: from lists.libvirt.org (localhost [IPv6:::1]) by lists.libvirt.org (Postfix) with ESMTP id 134FA188C; Wed, 29 Nov 2023 12:19:01 -0500 (EST) Received: by lists.libvirt.org (Postfix, from userid 996) id 523E11B2B; Wed, 29 Nov 2023 12:18:55 -0500 (EST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.libvirt.org (Postfix) with ESMTPS id 21B281A71 for ; Wed, 29 Nov 2023 12:18:41 -0500 (EST) Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-139-rlO2qmJnPdi6WcJ42qS2aQ-1; Wed, 29 Nov 2023 12:18:38 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id BFD363C14901 for ; Wed, 29 Nov 2023 17:18:37 +0000 (UTC) Received: from harajuku.usersys.redhat.com.homenet.telecomitalia.it (unknown [10.45.226.119]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 17A3840C6EBC for ; Wed, 29 Nov 2023 17:18:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on lists.libvirt.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,T_SCC_BODY_TEXT_LINE autolearn=unavailable autolearn_force=no version=3.4.4 X-MC-Unique: rlO2qmJnPdi6WcJ42qS2aQ-1 From: Andrea Bolognani To: devel@lists.libvirt.org Subject: [libvirt PATCH 5/5] ci: Refresh generated files Date: Wed, 29 Nov 2023 18:18:32 +0100 Message-ID: <20231129171832.756282-6-abologna@redhat.com> In-Reply-To: <20231129171832.756282-1-abologna@redhat.com> References: <20231129171832.756282-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.2 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Message-ID-Hash: ZIROUAWEDZWGJEAP7XMPMNJS7KY2BRGY X-Message-ID-Hash: ZIROUAWEDZWGJEAP7XMPMNJS7KY2BRGY X-MailFrom: abologna@redhat.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-config-1; header-match-config-2; header-match-config-3; header-match-devel.lists.libvirt.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.2 Precedence: list List-Id: Development discussions about the libvirt library & tools Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="utf-8"; x-default="true" Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1701279445192000001 This adds pytest everywhere. Signed-off-by: Andrea Bolognani Reviewed-by: Michal Privoznik --- ci/buildenv/almalinux-8.sh | 1 + ci/buildenv/alpine-317.sh | 1 + ci/buildenv/alpine-edge.sh | 1 + ci/buildenv/centos-stream-8.sh | 1 + ci/buildenv/centos-stream-9.sh | 1 + ci/buildenv/debian-11-cross-aarch64.sh | 1 + ci/buildenv/debian-11-cross-armv6l.sh | 1 + ci/buildenv/debian-11-cross-armv7l.sh | 1 + ci/buildenv/debian-11-cross-i686.sh | 1 + ci/buildenv/debian-11-cross-mips64el.sh | 1 + ci/buildenv/debian-11-cross-mipsel.sh | 1 + ci/buildenv/debian-11-cross-ppc64le.sh | 1 + ci/buildenv/debian-11-cross-s390x.sh | 1 + ci/buildenv/debian-11.sh | 1 + ci/buildenv/debian-12-cross-aarch64.sh | 1 + ci/buildenv/debian-12-cross-armv6l.sh | 1 + ci/buildenv/debian-12-cross-armv7l.sh | 1 + ci/buildenv/debian-12-cross-i686.sh | 1 + ci/buildenv/debian-12-cross-mips64el.sh | 1 + ci/buildenv/debian-12-cross-mipsel.sh | 1 + ci/buildenv/debian-12-cross-ppc64le.sh | 1 + ci/buildenv/debian-12-cross-s390x.sh | 1 + ci/buildenv/debian-12.sh | 1 + ci/buildenv/debian-sid-cross-aarch64.sh | 1 + ci/buildenv/debian-sid-cross-armv6l.sh | 1 + ci/buildenv/debian-sid-cross-armv7l.sh | 1 + ci/buildenv/debian-sid-cross-i686.sh | 1 + ci/buildenv/debian-sid-cross-mips64el.sh | 1 + ci/buildenv/debian-sid-cross-ppc64le.sh | 1 + ci/buildenv/debian-sid-cross-s390x.sh | 1 + ci/buildenv/debian-sid.sh | 1 + ci/buildenv/fedora-37.sh | 1 + ci/buildenv/fedora-38-cross-mingw32.sh | 1 + ci/buildenv/fedora-38-cross-mingw64.sh | 1 + ci/buildenv/fedora-38.sh | 1 + ci/buildenv/fedora-rawhide-cross-mingw32.sh | 1 + ci/buildenv/fedora-rawhide-cross-mingw64.sh | 1 + ci/buildenv/fedora-rawhide.sh | 1 + ci/buildenv/opensuse-leap-15.sh | 1 + ci/buildenv/opensuse-tumbleweed.sh | 1 + ci/buildenv/ubuntu-2004.sh | 1 + ci/buildenv/ubuntu-2204.sh | 1 + ci/cirrus/freebsd-12.vars | 2 +- ci/cirrus/freebsd-13.vars | 2 +- ci/cirrus/macos-13.vars | 2 +- ci/cirrus/macos-14.vars | 2 +- ci/containers/almalinux-8.Dockerfile | 1 + ci/containers/alpine-317.Dockerfile | 1 + ci/containers/alpine-edge.Dockerfile | 1 + ci/containers/centos-stream-8.Dockerfile | 1 + ci/containers/centos-stream-9.Dockerfile | 1 + ci/containers/debian-11-cross-aarch64.Dockerfile | 1 + ci/containers/debian-11-cross-armv6l.Dockerfile | 1 + ci/containers/debian-11-cross-armv7l.Dockerfile | 1 + ci/containers/debian-11-cross-i686.Dockerfile | 1 + ci/containers/debian-11-cross-mips64el.Dockerfile | 1 + ci/containers/debian-11-cross-mipsel.Dockerfile | 1 + ci/containers/debian-11-cross-ppc64le.Dockerfile | 1 + ci/containers/debian-11-cross-s390x.Dockerfile | 1 + ci/containers/debian-11.Dockerfile | 1 + ci/containers/debian-12-cross-aarch64.Dockerfile | 1 + ci/containers/debian-12-cross-armv6l.Dockerfile | 1 + ci/containers/debian-12-cross-armv7l.Dockerfile | 1 + ci/containers/debian-12-cross-i686.Dockerfile | 1 + ci/containers/debian-12-cross-mips64el.Dockerfile | 1 + ci/containers/debian-12-cross-mipsel.Dockerfile | 1 + ci/containers/debian-12-cross-ppc64le.Dockerfile | 1 + ci/containers/debian-12-cross-s390x.Dockerfile | 1 + ci/containers/debian-12.Dockerfile | 1 + ci/containers/debian-sid-cross-aarch64.Dockerfile | 1 + ci/containers/debian-sid-cross-armv6l.Dockerfile | 1 + ci/containers/debian-sid-cross-armv7l.Dockerfile | 1 + ci/containers/debian-sid-cross-i686.Dockerfile | 1 + ci/containers/debian-sid-cross-mips64el.Dockerfile | 1 + ci/containers/debian-sid-cross-ppc64le.Dockerfile | 1 + ci/containers/debian-sid-cross-s390x.Dockerfile | 1 + ci/containers/debian-sid.Dockerfile | 1 + ci/containers/fedora-37.Dockerfile | 1 + ci/containers/fedora-38-cross-mingw32.Dockerfile | 1 + ci/containers/fedora-38-cross-mingw64.Dockerfile | 1 + ci/containers/fedora-38.Dockerfile | 1 + ci/containers/fedora-rawhide-cross-mingw32.Dockerfile | 1 + ci/containers/fedora-rawhide-cross-mingw64.Dockerfile | 1 + ci/containers/fedora-rawhide.Dockerfile | 1 + ci/containers/opensuse-leap-15.Dockerfile | 1 + ci/containers/opensuse-tumbleweed.Dockerfile | 1 + ci/containers/ubuntu-2004.Dockerfile | 1 + ci/containers/ubuntu-2204.Dockerfile | 1 + 88 files changed, 88 insertions(+), 4 deletions(-) diff --git a/ci/buildenv/almalinux-8.sh b/ci/buildenv/almalinux-8.sh index f127c0dc5a..0f0e66ef9a 100644 --- a/ci/buildenv/almalinux-8.sh +++ b/ci/buildenv/almalinux-8.sh @@ -73,6 +73,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/buildenv/alpine-317.sh b/ci/buildenv/alpine-317.sh index 975914a7c2..d11c247051 100644 --- a/ci/buildenv/alpine-317.sh +++ b/ci/buildenv/alpine-317.sh @@ -57,6 +57,7 @@ function install_buildenv() { polkit \ py3-docutils \ py3-flake8 \ + py3-pytest \ python3 \ qemu-img \ readline-dev \ diff --git a/ci/buildenv/alpine-edge.sh b/ci/buildenv/alpine-edge.sh index 975914a7c2..d11c247051 100644 --- a/ci/buildenv/alpine-edge.sh +++ b/ci/buildenv/alpine-edge.sh @@ -57,6 +57,7 @@ function install_buildenv() { polkit \ py3-docutils \ py3-flake8 \ + py3-pytest \ python3 \ qemu-img \ readline-dev \ diff --git a/ci/buildenv/centos-stream-8.sh b/ci/buildenv/centos-stream-8.sh index 0ccc86156a..58adc95633 100644 --- a/ci/buildenv/centos-stream-8.sh +++ b/ci/buildenv/centos-stream-8.sh @@ -74,6 +74,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/buildenv/centos-stream-9.sh b/ci/buildenv/centos-stream-9.sh index 475ee48e76..28960fff46 100644 --- a/ci/buildenv/centos-stream-9.sh +++ b/ci/buildenv/centos-stream-9.sh @@ -70,6 +70,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/buildenv/debian-11-cross-aarch64.sh b/ci/buildenv/debian-11= -cross-aarch64.sh index fdf9344d6c..ba0062577f 100644 --- a/ci/buildenv/debian-11-cross-aarch64.sh +++ b/ci/buildenv/debian-11-cross-aarch64.sh @@ -40,6 +40,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-11-cross-armv6l.sh b/ci/buildenv/debian-11-= cross-armv6l.sh index a9e7328981..272cb71c8a 100644 --- a/ci/buildenv/debian-11-cross-armv6l.sh +++ b/ci/buildenv/debian-11-cross-armv6l.sh @@ -40,6 +40,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-11-cross-armv7l.sh b/ci/buildenv/debian-11-= cross-armv7l.sh index 0f0f6ade82..4cbb2bddf1 100644 --- a/ci/buildenv/debian-11-cross-armv7l.sh +++ b/ci/buildenv/debian-11-cross-armv7l.sh @@ -40,6 +40,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-11-cross-i686.sh b/ci/buildenv/debian-11-cr= oss-i686.sh index 687c1491a8..9cb76c85c8 100644 --- a/ci/buildenv/debian-11-cross-i686.sh +++ b/ci/buildenv/debian-11-cross-i686.sh @@ -40,6 +40,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-11-cross-mips64el.sh b/ci/buildenv/debian-1= 1-cross-mips64el.sh index ab66269862..3960d6f949 100644 --- a/ci/buildenv/debian-11-cross-mips64el.sh +++ b/ci/buildenv/debian-11-cross-mips64el.sh @@ -40,6 +40,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-11-cross-mipsel.sh b/ci/buildenv/debian-11-= cross-mipsel.sh index d7ac79cb9c..787da13997 100644 --- a/ci/buildenv/debian-11-cross-mipsel.sh +++ b/ci/buildenv/debian-11-cross-mipsel.sh @@ -40,6 +40,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-11-cross-ppc64le.sh b/ci/buildenv/debian-11= -cross-ppc64le.sh index 65c452db0b..60fd2e116c 100644 --- a/ci/buildenv/debian-11-cross-ppc64le.sh +++ b/ci/buildenv/debian-11-cross-ppc64le.sh @@ -40,6 +40,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-11-cross-s390x.sh b/ci/buildenv/debian-11-c= ross-s390x.sh index 4b7be31880..b703571016 100644 --- a/ci/buildenv/debian-11-cross-s390x.sh +++ b/ci/buildenv/debian-11-cross-s390x.sh @@ -40,6 +40,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-11.sh b/ci/buildenv/debian-11.sh index 4cf08c45a7..353bc76567 100644 --- a/ci/buildenv/debian-11.sh +++ b/ci/buildenv/debian-11.sh @@ -75,6 +75,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-12-cross-aarch64.sh b/ci/buildenv/debian-12= -cross-aarch64.sh index 859c63dbc5..16857a60c8 100644 --- a/ci/buildenv/debian-12-cross-aarch64.sh +++ b/ci/buildenv/debian-12-cross-aarch64.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-12-cross-armv6l.sh b/ci/buildenv/debian-12-= cross-armv6l.sh index 97cf5d7b77..8d758a195b 100644 --- a/ci/buildenv/debian-12-cross-armv6l.sh +++ b/ci/buildenv/debian-12-cross-armv6l.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-12-cross-armv7l.sh b/ci/buildenv/debian-12-= cross-armv7l.sh index 785020b095..08e1b08d4d 100644 --- a/ci/buildenv/debian-12-cross-armv7l.sh +++ b/ci/buildenv/debian-12-cross-armv7l.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-12-cross-i686.sh b/ci/buildenv/debian-12-cr= oss-i686.sh index ddcbbcaa92..37142cb0c3 100644 --- a/ci/buildenv/debian-12-cross-i686.sh +++ b/ci/buildenv/debian-12-cross-i686.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-12-cross-mips64el.sh b/ci/buildenv/debian-1= 2-cross-mips64el.sh index 2260e2f953..aab7c72a4f 100644 --- a/ci/buildenv/debian-12-cross-mips64el.sh +++ b/ci/buildenv/debian-12-cross-mips64el.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-12-cross-mipsel.sh b/ci/buildenv/debian-12-= cross-mipsel.sh index f34ec9c04d..c188d46f41 100644 --- a/ci/buildenv/debian-12-cross-mipsel.sh +++ b/ci/buildenv/debian-12-cross-mipsel.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-12-cross-ppc64le.sh b/ci/buildenv/debian-12= -cross-ppc64le.sh index 68e5144614..75b82147f9 100644 --- a/ci/buildenv/debian-12-cross-ppc64le.sh +++ b/ci/buildenv/debian-12-cross-ppc64le.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-12-cross-s390x.sh b/ci/buildenv/debian-12-c= ross-s390x.sh index 093dafedcb..e537333efb 100644 --- a/ci/buildenv/debian-12-cross-s390x.sh +++ b/ci/buildenv/debian-12-cross-s390x.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-12.sh b/ci/buildenv/debian-12.sh index 781e61492f..5b259a243a 100644 --- a/ci/buildenv/debian-12.sh +++ b/ci/buildenv/debian-12.sh @@ -75,6 +75,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-sid-cross-aarch64.sh b/ci/buildenv/debian-s= id-cross-aarch64.sh index 859c63dbc5..16857a60c8 100644 --- a/ci/buildenv/debian-sid-cross-aarch64.sh +++ b/ci/buildenv/debian-sid-cross-aarch64.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-sid-cross-armv6l.sh b/ci/buildenv/debian-si= d-cross-armv6l.sh index 7cf2ddfe15..69a5612d01 100644 --- a/ci/buildenv/debian-sid-cross-armv6l.sh +++ b/ci/buildenv/debian-sid-cross-armv6l.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-sid-cross-armv7l.sh b/ci/buildenv/debian-si= d-cross-armv7l.sh index 09c5924019..2f59aa4203 100644 --- a/ci/buildenv/debian-sid-cross-armv7l.sh +++ b/ci/buildenv/debian-sid-cross-armv7l.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-sid-cross-i686.sh b/ci/buildenv/debian-sid-= cross-i686.sh index 3f5a12c398..f096fa88c6 100644 --- a/ci/buildenv/debian-sid-cross-i686.sh +++ b/ci/buildenv/debian-sid-cross-i686.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-sid-cross-mips64el.sh b/ci/buildenv/debian-= sid-cross-mips64el.sh index 2260e2f953..aab7c72a4f 100644 --- a/ci/buildenv/debian-sid-cross-mips64el.sh +++ b/ci/buildenv/debian-sid-cross-mips64el.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-sid-cross-ppc64le.sh b/ci/buildenv/debian-s= id-cross-ppc64le.sh index 68e5144614..75b82147f9 100644 --- a/ci/buildenv/debian-sid-cross-ppc64le.sh +++ b/ci/buildenv/debian-sid-cross-ppc64le.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-sid-cross-s390x.sh b/ci/buildenv/debian-sid= -cross-s390x.sh index 093dafedcb..e537333efb 100644 --- a/ci/buildenv/debian-sid-cross-s390x.sh +++ b/ci/buildenv/debian-sid-cross-s390x.sh @@ -41,6 +41,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/debian-sid.sh b/ci/buildenv/debian-sid.sh index 781e61492f..5b259a243a 100644 --- a/ci/buildenv/debian-sid.sh +++ b/ci/buildenv/debian-sid.sh @@ -75,6 +75,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/buildenv/fedora-37.sh b/ci/buildenv/fedora-37.sh index 89a32cd7d1..10c5e1651f 100644 --- a/ci/buildenv/fedora-37.sh +++ b/ci/buildenv/fedora-37.sh @@ -70,6 +70,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/buildenv/fedora-38-cross-mingw32.sh b/ci/buildenv/fedora-38= -cross-mingw32.sh index 05f1046239..3b1479d945 100644 --- a/ci/buildenv/fedora-38-cross-mingw32.sh +++ b/ci/buildenv/fedora-38-cross-mingw32.sh @@ -41,6 +41,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ rpm-build \ scrub \ diff --git a/ci/buildenv/fedora-38-cross-mingw64.sh b/ci/buildenv/fedora-38= -cross-mingw64.sh index b41439b2b3..5ab11f7af1 100644 --- a/ci/buildenv/fedora-38-cross-mingw64.sh +++ b/ci/buildenv/fedora-38-cross-mingw64.sh @@ -41,6 +41,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ rpm-build \ scrub \ diff --git a/ci/buildenv/fedora-38.sh b/ci/buildenv/fedora-38.sh index 89a32cd7d1..10c5e1651f 100644 --- a/ci/buildenv/fedora-38.sh +++ b/ci/buildenv/fedora-38.sh @@ -70,6 +70,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/buildenv/fedora-rawhide-cross-mingw32.sh b/ci/buildenv/fedo= ra-rawhide-cross-mingw32.sh index 72ef56aa67..2dba1c835b 100644 --- a/ci/buildenv/fedora-rawhide-cross-mingw32.sh +++ b/ci/buildenv/fedora-rawhide-cross-mingw32.sh @@ -42,6 +42,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ rpm-build \ scrub \ diff --git a/ci/buildenv/fedora-rawhide-cross-mingw64.sh b/ci/buildenv/fedo= ra-rawhide-cross-mingw64.sh index 77f2c3a2b4..9ccd1c9914 100644 --- a/ci/buildenv/fedora-rawhide-cross-mingw64.sh +++ b/ci/buildenv/fedora-rawhide-cross-mingw64.sh @@ -42,6 +42,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ rpm-build \ scrub \ diff --git a/ci/buildenv/fedora-rawhide.sh b/ci/buildenv/fedora-rawhide.sh index 56d8199f70..198fb85659 100644 --- a/ci/buildenv/fedora-rawhide.sh +++ b/ci/buildenv/fedora-rawhide.sh @@ -71,6 +71,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/buildenv/opensuse-leap-15.sh b/ci/buildenv/opensuse-leap-15= .sh index fd42033ac3..50fa733612 100644 --- a/ci/buildenv/opensuse-leap-15.sh +++ b/ci/buildenv/opensuse-leap-15.sh @@ -72,6 +72,7 @@ function install_buildenv() { python3-base \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-tools \ readline-devel \ rpm-build \ diff --git a/ci/buildenv/opensuse-tumbleweed.sh b/ci/buildenv/opensuse-tumb= leweed.sh index 0c57fc43f1..56854136d3 100644 --- a/ci/buildenv/opensuse-tumbleweed.sh +++ b/ci/buildenv/opensuse-tumbleweed.sh @@ -71,6 +71,7 @@ function install_buildenv() { polkit \ python3-base \ python3-docutils \ + python3-pytest \ python39-flake8 \ qemu-tools \ readline-devel \ diff --git a/ci/buildenv/ubuntu-2004.sh b/ci/buildenv/ubuntu-2004.sh index c034e79cef..3572918758 100644 --- a/ci/buildenv/ubuntu-2004.sh +++ b/ci/buildenv/ubuntu-2004.sh @@ -76,6 +76,7 @@ function install_buildenv() { python3 \ python3-docutils \ python3-pip \ + python3-pytest \ python3-setuptools \ python3-wheel \ qemu-utils \ diff --git a/ci/buildenv/ubuntu-2204.sh b/ci/buildenv/ubuntu-2204.sh index 9f0fb1a545..153dd94209 100644 --- a/ci/buildenv/ubuntu-2204.sh +++ b/ci/buildenv/ubuntu-2204.sh @@ -76,6 +76,7 @@ function install_buildenv() { policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/cirrus/freebsd-12.vars b/ci/cirrus/freebsd-12.vars index b3b3d7a187..ec8b2e0faf 100644 --- a/ci/cirrus/freebsd-12.vars +++ b/ci/cirrus/freebsd-12.vars @@ -11,6 +11,6 @@ MAKE=3D'/usr/local/bin/gmake' NINJA=3D'/usr/local/bin/ninja' PACKAGING_COMMAND=3D'pkg' PIP3=3D'/usr/local/bin/pip-3.8' -PKGS=3D'augeas bash-completion ca_root_nss ccache codespell cppi curl cyru= s-sasl diffutils diskscrub fusefs-libs gettext git glib gmake gnugrep gnutl= s gsed libpcap libpciaccess libssh libssh2 libxml2 libxslt meson ninja perl= 5 pkgconf polkit py39-docutils py39-flake8 python3 qemu readline yajl' +PKGS=3D'augeas bash-completion ca_root_nss ccache codespell cppi curl cyru= s-sasl diffutils diskscrub fusefs-libs gettext git glib gmake gnugrep gnutl= s gsed libpcap libpciaccess libssh libssh2 libxml2 libxslt meson ninja perl= 5 pkgconf polkit py39-docutils py39-flake8 py39-pytest python3 qemu readlin= e yajl' PYPI_PKGS=3D'' PYTHON=3D'/usr/local/bin/python3' diff --git a/ci/cirrus/freebsd-13.vars b/ci/cirrus/freebsd-13.vars index b3b3d7a187..ec8b2e0faf 100644 --- a/ci/cirrus/freebsd-13.vars +++ b/ci/cirrus/freebsd-13.vars @@ -11,6 +11,6 @@ MAKE=3D'/usr/local/bin/gmake' NINJA=3D'/usr/local/bin/ninja' PACKAGING_COMMAND=3D'pkg' PIP3=3D'/usr/local/bin/pip-3.8' -PKGS=3D'augeas bash-completion ca_root_nss ccache codespell cppi curl cyru= s-sasl diffutils diskscrub fusefs-libs gettext git glib gmake gnugrep gnutl= s gsed libpcap libpciaccess libssh libssh2 libxml2 libxslt meson ninja perl= 5 pkgconf polkit py39-docutils py39-flake8 python3 qemu readline yajl' +PKGS=3D'augeas bash-completion ca_root_nss ccache codespell cppi curl cyru= s-sasl diffutils diskscrub fusefs-libs gettext git glib gmake gnugrep gnutl= s gsed libpcap libpciaccess libssh libssh2 libxml2 libxslt meson ninja perl= 5 pkgconf polkit py39-docutils py39-flake8 py39-pytest python3 qemu readlin= e yajl' PYPI_PKGS=3D'' PYTHON=3D'/usr/local/bin/python3' diff --git a/ci/cirrus/macos-13.vars b/ci/cirrus/macos-13.vars index 33fc86e1f5..b059205480 100644 --- a/ci/cirrus/macos-13.vars +++ b/ci/cirrus/macos-13.vars @@ -12,5 +12,5 @@ NINJA=3D'/opt/homebrew/bin/ninja' PACKAGING_COMMAND=3D'brew' PIP3=3D'/opt/homebrew/bin/pip3' PKGS=3D'augeas bash-completion ccache codespell cppi curl diffutils docuti= ls flake8 gettext git glib gnu-sed gnutls grep libiscsi libpcap libssh libs= sh2 libxml2 libxslt make meson ninja perl pkg-config python3 qemu readline = scrub yajl' -PYPI_PKGS=3D'' +PYPI_PKGS=3D'pytest' PYTHON=3D'/opt/homebrew/bin/python3' diff --git a/ci/cirrus/macos-14.vars b/ci/cirrus/macos-14.vars index 33fc86e1f5..b059205480 100644 --- a/ci/cirrus/macos-14.vars +++ b/ci/cirrus/macos-14.vars @@ -12,5 +12,5 @@ NINJA=3D'/opt/homebrew/bin/ninja' PACKAGING_COMMAND=3D'brew' PIP3=3D'/opt/homebrew/bin/pip3' PKGS=3D'augeas bash-completion ccache codespell cppi curl diffutils docuti= ls flake8 gettext git glib gnu-sed gnutls grep libiscsi libpcap libssh libs= sh2 libxml2 libxslt make meson ninja perl pkg-config python3 qemu readline = scrub yajl' -PYPI_PKGS=3D'' +PYPI_PKGS=3D'pytest' PYTHON=3D'/opt/homebrew/bin/python3' diff --git a/ci/containers/almalinux-8.Dockerfile b/ci/containers/almalinux= -8.Dockerfile index 3114dc2a7a..453fa28c7b 100644 --- a/ci/containers/almalinux-8.Dockerfile +++ b/ci/containers/almalinux-8.Dockerfile @@ -74,6 +74,7 @@ RUN dnf update -y && \ python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/containers/alpine-317.Dockerfile b/ci/containers/alpine-317= .Dockerfile index ff24996366..52a2caf5a0 100644 --- a/ci/containers/alpine-317.Dockerfile +++ b/ci/containers/alpine-317.Dockerfile @@ -58,6 +58,7 @@ RUN apk update && \ polkit \ py3-docutils \ py3-flake8 \ + py3-pytest \ python3 \ qemu-img \ readline-dev \ diff --git a/ci/containers/alpine-edge.Dockerfile b/ci/containers/alpine-ed= ge.Dockerfile index d06563de15..aa78d00372 100644 --- a/ci/containers/alpine-edge.Dockerfile +++ b/ci/containers/alpine-edge.Dockerfile @@ -58,6 +58,7 @@ RUN apk update && \ polkit \ py3-docutils \ py3-flake8 \ + py3-pytest \ python3 \ qemu-img \ readline-dev \ diff --git a/ci/containers/centos-stream-8.Dockerfile b/ci/containers/cento= s-stream-8.Dockerfile index 285e7275ba..1ca3bde68c 100644 --- a/ci/containers/centos-stream-8.Dockerfile +++ b/ci/containers/centos-stream-8.Dockerfile @@ -75,6 +75,7 @@ RUN dnf distro-sync -y && \ python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/containers/centos-stream-9.Dockerfile b/ci/containers/cento= s-stream-9.Dockerfile index fb6e41fd27..6bc61fe816 100644 --- a/ci/containers/centos-stream-9.Dockerfile +++ b/ci/containers/centos-stream-9.Dockerfile @@ -71,6 +71,7 @@ RUN dnf distro-sync -y && \ python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/containers/debian-11-cross-aarch64.Dockerfile b/ci/containe= rs/debian-11-cross-aarch64.Dockerfile index 43425c59e3..4652009d5d 100644 --- a/ci/containers/debian-11-cross-aarch64.Dockerfile +++ b/ci/containers/debian-11-cross-aarch64.Dockerfile @@ -42,6 +42,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-11-cross-armv6l.Dockerfile b/ci/container= s/debian-11-cross-armv6l.Dockerfile index 0f63edd5cb..406c6eba49 100644 --- a/ci/containers/debian-11-cross-armv6l.Dockerfile +++ b/ci/containers/debian-11-cross-armv6l.Dockerfile @@ -42,6 +42,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-11-cross-armv7l.Dockerfile b/ci/container= s/debian-11-cross-armv7l.Dockerfile index 8b2be0fcc7..4d53743de0 100644 --- a/ci/containers/debian-11-cross-armv7l.Dockerfile +++ b/ci/containers/debian-11-cross-armv7l.Dockerfile @@ -42,6 +42,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-11-cross-i686.Dockerfile b/ci/containers/= debian-11-cross-i686.Dockerfile index 064f32a49b..52130cd52a 100644 --- a/ci/containers/debian-11-cross-i686.Dockerfile +++ b/ci/containers/debian-11-cross-i686.Dockerfile @@ -42,6 +42,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-11-cross-mips64el.Dockerfile b/ci/contain= ers/debian-11-cross-mips64el.Dockerfile index 76408d73bc..8becb6eca9 100644 --- a/ci/containers/debian-11-cross-mips64el.Dockerfile +++ b/ci/containers/debian-11-cross-mips64el.Dockerfile @@ -42,6 +42,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-11-cross-mipsel.Dockerfile b/ci/container= s/debian-11-cross-mipsel.Dockerfile index 2421938da9..c41398f6e5 100644 --- a/ci/containers/debian-11-cross-mipsel.Dockerfile +++ b/ci/containers/debian-11-cross-mipsel.Dockerfile @@ -42,6 +42,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-11-cross-ppc64le.Dockerfile b/ci/containe= rs/debian-11-cross-ppc64le.Dockerfile index 7f219e1e4f..ae17452b86 100644 --- a/ci/containers/debian-11-cross-ppc64le.Dockerfile +++ b/ci/containers/debian-11-cross-ppc64le.Dockerfile @@ -42,6 +42,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-11-cross-s390x.Dockerfile b/ci/containers= /debian-11-cross-s390x.Dockerfile index 22149e66b9..b3242bfecc 100644 --- a/ci/containers/debian-11-cross-s390x.Dockerfile +++ b/ci/containers/debian-11-cross-s390x.Dockerfile @@ -42,6 +42,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-11.Dockerfile b/ci/containers/debian-11.D= ockerfile index 5981f3841f..313e9f8e32 100644 --- a/ci/containers/debian-11.Dockerfile +++ b/ci/containers/debian-11.Dockerfile @@ -77,6 +77,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-12-cross-aarch64.Dockerfile b/ci/containe= rs/debian-12-cross-aarch64.Dockerfile index bbd5f3e329..b1df77f686 100644 --- a/ci/containers/debian-12-cross-aarch64.Dockerfile +++ b/ci/containers/debian-12-cross-aarch64.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-12-cross-armv6l.Dockerfile b/ci/container= s/debian-12-cross-armv6l.Dockerfile index 98ada6e45a..39326f8463 100644 --- a/ci/containers/debian-12-cross-armv6l.Dockerfile +++ b/ci/containers/debian-12-cross-armv6l.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-12-cross-armv7l.Dockerfile b/ci/container= s/debian-12-cross-armv7l.Dockerfile index fdd853e84a..2f5cba03df 100644 --- a/ci/containers/debian-12-cross-armv7l.Dockerfile +++ b/ci/containers/debian-12-cross-armv7l.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-12-cross-i686.Dockerfile b/ci/containers/= debian-12-cross-i686.Dockerfile index 680a76a0e1..1241904b3b 100644 --- a/ci/containers/debian-12-cross-i686.Dockerfile +++ b/ci/containers/debian-12-cross-i686.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-12-cross-mips64el.Dockerfile b/ci/contain= ers/debian-12-cross-mips64el.Dockerfile index 94504776d5..dd7eeb23db 100644 --- a/ci/containers/debian-12-cross-mips64el.Dockerfile +++ b/ci/containers/debian-12-cross-mips64el.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-12-cross-mipsel.Dockerfile b/ci/container= s/debian-12-cross-mipsel.Dockerfile index 66a1bc278b..b320afbecd 100644 --- a/ci/containers/debian-12-cross-mipsel.Dockerfile +++ b/ci/containers/debian-12-cross-mipsel.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-12-cross-ppc64le.Dockerfile b/ci/containe= rs/debian-12-cross-ppc64le.Dockerfile index 63afe6f18c..79a785ecc5 100644 --- a/ci/containers/debian-12-cross-ppc64le.Dockerfile +++ b/ci/containers/debian-12-cross-ppc64le.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-12-cross-s390x.Dockerfile b/ci/containers= /debian-12-cross-s390x.Dockerfile index ca707e2ec1..37564b3bf8 100644 --- a/ci/containers/debian-12-cross-s390x.Dockerfile +++ b/ci/containers/debian-12-cross-s390x.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-12.Dockerfile b/ci/containers/debian-12.D= ockerfile index 4e1155bcf6..8464b8ad93 100644 --- a/ci/containers/debian-12.Dockerfile +++ b/ci/containers/debian-12.Dockerfile @@ -77,6 +77,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-sid-cross-aarch64.Dockerfile b/ci/contain= ers/debian-sid-cross-aarch64.Dockerfile index d5d4659d67..c2670eba71 100644 --- a/ci/containers/debian-sid-cross-aarch64.Dockerfile +++ b/ci/containers/debian-sid-cross-aarch64.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-sid-cross-armv6l.Dockerfile b/ci/containe= rs/debian-sid-cross-armv6l.Dockerfile index 06a7240ce9..eef19ab72c 100644 --- a/ci/containers/debian-sid-cross-armv6l.Dockerfile +++ b/ci/containers/debian-sid-cross-armv6l.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-sid-cross-armv7l.Dockerfile b/ci/containe= rs/debian-sid-cross-armv7l.Dockerfile index 58ba4e15da..97c765bc7a 100644 --- a/ci/containers/debian-sid-cross-armv7l.Dockerfile +++ b/ci/containers/debian-sid-cross-armv7l.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-sid-cross-i686.Dockerfile b/ci/containers= /debian-sid-cross-i686.Dockerfile index b3d82e4bd5..a6c90df0cc 100644 --- a/ci/containers/debian-sid-cross-i686.Dockerfile +++ b/ci/containers/debian-sid-cross-i686.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-sid-cross-mips64el.Dockerfile b/ci/contai= ners/debian-sid-cross-mips64el.Dockerfile index bedce7d2f1..5cc740fe89 100644 --- a/ci/containers/debian-sid-cross-mips64el.Dockerfile +++ b/ci/containers/debian-sid-cross-mips64el.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-sid-cross-ppc64le.Dockerfile b/ci/contain= ers/debian-sid-cross-ppc64le.Dockerfile index 0ca0847267..996dd596d0 100644 --- a/ci/containers/debian-sid-cross-ppc64le.Dockerfile +++ b/ci/containers/debian-sid-cross-ppc64le.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-sid-cross-s390x.Dockerfile b/ci/container= s/debian-sid-cross-s390x.Dockerfile index 55aa2c9f36..757c9c4c3a 100644 --- a/ci/containers/debian-sid-cross-s390x.Dockerfile +++ b/ci/containers/debian-sid-cross-s390x.Dockerfile @@ -43,6 +43,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/debian-sid.Dockerfile b/ci/containers/debian-sid= .Dockerfile index 9b1af19e08..7145c0fcb5 100644 --- a/ci/containers/debian-sid.Dockerfile +++ b/ci/containers/debian-sid.Dockerfile @@ -77,6 +77,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ diff --git a/ci/containers/fedora-37.Dockerfile b/ci/containers/fedora-37.D= ockerfile index 35bb52b2a0..86ebc0f027 100644 --- a/ci/containers/fedora-37.Dockerfile +++ b/ci/containers/fedora-37.Dockerfile @@ -81,6 +81,7 @@ exec "$@"\n' > /usr/bin/nosync && \ python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/containers/fedora-38-cross-mingw32.Dockerfile b/ci/containe= rs/fedora-38-cross-mingw32.Dockerfile index 34c8a5003d..27adb78658 100644 --- a/ci/containers/fedora-38-cross-mingw32.Dockerfile +++ b/ci/containers/fedora-38-cross-mingw32.Dockerfile @@ -52,6 +52,7 @@ exec "$@"\n' > /usr/bin/nosync && \ python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ rpm-build \ scrub \ diff --git a/ci/containers/fedora-38-cross-mingw64.Dockerfile b/ci/containe= rs/fedora-38-cross-mingw64.Dockerfile index d76b04d942..8d5a69f686 100644 --- a/ci/containers/fedora-38-cross-mingw64.Dockerfile +++ b/ci/containers/fedora-38-cross-mingw64.Dockerfile @@ -52,6 +52,7 @@ exec "$@"\n' > /usr/bin/nosync && \ python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ rpm-build \ scrub \ diff --git a/ci/containers/fedora-38.Dockerfile b/ci/containers/fedora-38.D= ockerfile index 6b2672463f..a47e4a484e 100644 --- a/ci/containers/fedora-38.Dockerfile +++ b/ci/containers/fedora-38.Dockerfile @@ -81,6 +81,7 @@ exec "$@"\n' > /usr/bin/nosync && \ python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/containers/fedora-rawhide-cross-mingw32.Dockerfile b/ci/con= tainers/fedora-rawhide-cross-mingw32.Dockerfile index d0f56e1c17..865fde2f8f 100644 --- a/ci/containers/fedora-rawhide-cross-mingw32.Dockerfile +++ b/ci/containers/fedora-rawhide-cross-mingw32.Dockerfile @@ -53,6 +53,7 @@ exec "$@"\n' > /usr/bin/nosync && \ python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ rpm-build \ scrub \ diff --git a/ci/containers/fedora-rawhide-cross-mingw64.Dockerfile b/ci/con= tainers/fedora-rawhide-cross-mingw64.Dockerfile index 5fdb20b752..0e1a23dbac 100644 --- a/ci/containers/fedora-rawhide-cross-mingw64.Dockerfile +++ b/ci/containers/fedora-rawhide-cross-mingw64.Dockerfile @@ -53,6 +53,7 @@ exec "$@"\n' > /usr/bin/nosync && \ python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ rpm-build \ scrub \ diff --git a/ci/containers/fedora-rawhide.Dockerfile b/ci/containers/fedora= -rawhide.Dockerfile index eafbd550e0..72e7d85643 100644 --- a/ci/containers/fedora-rawhide.Dockerfile +++ b/ci/containers/fedora-rawhide.Dockerfile @@ -82,6 +82,7 @@ exec "$@"\n' > /usr/bin/nosync && \ python3 \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-img \ readline-devel \ rpm-build \ diff --git a/ci/containers/opensuse-leap-15.Dockerfile b/ci/containers/open= suse-leap-15.Dockerfile index 642eef70eb..748d764075 100644 --- a/ci/containers/opensuse-leap-15.Dockerfile +++ b/ci/containers/opensuse-leap-15.Dockerfile @@ -73,6 +73,7 @@ RUN zypper update -y && \ python3-base \ python3-docutils \ python3-flake8 \ + python3-pytest \ qemu-tools \ readline-devel \ rpm-build \ diff --git a/ci/containers/opensuse-tumbleweed.Dockerfile b/ci/containers/o= pensuse-tumbleweed.Dockerfile index 0f1db78281..691553e9be 100644 --- a/ci/containers/opensuse-tumbleweed.Dockerfile +++ b/ci/containers/opensuse-tumbleweed.Dockerfile @@ -72,6 +72,7 @@ RUN zypper dist-upgrade -y && \ polkit \ python3-base \ python3-docutils \ + python3-pytest \ python39-flake8 \ qemu-tools \ readline-devel \ diff --git a/ci/containers/ubuntu-2004.Dockerfile b/ci/containers/ubuntu-20= 04.Dockerfile index 830b9aad83..25d787f50a 100644 --- a/ci/containers/ubuntu-2004.Dockerfile +++ b/ci/containers/ubuntu-2004.Dockerfile @@ -78,6 +78,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ python3 \ python3-docutils \ python3-pip \ + python3-pytest \ python3-setuptools \ python3-wheel \ qemu-utils \ diff --git a/ci/containers/ubuntu-2204.Dockerfile b/ci/containers/ubuntu-22= 04.Dockerfile index 3d403baa31..47b9c3d7f9 100644 --- a/ci/containers/ubuntu-2204.Dockerfile +++ b/ci/containers/ubuntu-2204.Dockerfile @@ -78,6 +78,7 @@ RUN export DEBIAN_FRONTEND=3Dnoninteractive && \ policykit-1 \ python3 \ python3-docutils \ + python3-pytest \ qemu-utils \ scrub \ sed \ --=20 2.43.0 _______________________________________________ Devel mailing list -- devel@lists.libvirt.org To unsubscribe send an email to devel-leave@lists.libvirt.org