From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6923B42D17 for ; Wed, 21 Jun 2023 20:42:05 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 62C88406BC; Wed, 21 Jun 2023 20:42:05 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 1FD634003C for ; Wed, 21 Jun 2023 20:42:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1687372923; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=f5595Hc8lz2SC3LUCXP1/8HYJPipI2IFxtVPpV6j1U0=; b=amHWJVGogTu34GNEFIltWtZ3+a1b9eeLb2i5IJGxfuq8HvmfL0spQmHzMsVlMBopBkmjoY BtjJI+p9RZDgMXpoANZzC2E5NYKewSAhKRkVINAAqeSs8pt/t91L+dOYZ5F/ECFLaTF6d4 vJQb7jzDijrTEh2DFGw5uqjDge0pX6I= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-80-fiFrz5jEO7GTt420XTGcdA-1; Wed, 21 Jun 2023 14:42:02 -0400 X-MC-Unique: fiFrz5jEO7GTt420XTGcdA-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 9C1408AB382; Wed, 21 Jun 2023 18:42:01 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.32.232]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D21782017DE2; Wed, 21 Jun 2023 18:41:59 +0000 (UTC) From: Aaron Conole To: ohilyard@iol.unh.edu Cc: ci@dpdk.org, alialnu@nvidia.com, Patrick Robb Subject: Re: [PATCH v5 1/3] create_new_execution_file_from_tags: change tag argument References: <20220207150826.18950-1-ohilyard@iol.unh.edu> Date: Wed, 21 Jun 2023 14:41:57 -0400 In-Reply-To: <20220207150826.18950-1-ohilyard@iol.unh.edu> (ohilyard@iol.unh.edu's message of "Mon, 7 Feb 2022 10:08:24 -0500") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org ohilyard@iol.unh.edu writes: > From: Owen Hilyard > > BREAKING CHANGE: --tags syntax changed > > Due to limitations of the argparse library, you can't have 2 varidic > arguments. Since upcoming requirements for the CI require the ability to > specify individual tests to be run (ex: weekly rte_flow testing), this > script must have the ability to pass in those tests as well. This is a > change made to support that. > > Old syntax: > "--tags core documentation" > > New syntax: > "--tag core --tag documentation" > > Signed-off-by: Owen Hilyard > --- 1/3, 2/3, and 3/3 applied. Thanks!