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 7052A41B7B; Thu, 12 Oct 2023 15:00:43 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 592E2402E9; Thu, 12 Oct 2023 15:00:31 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id D4A67402C8 for ; Thu, 12 Oct 2023 15:00:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1697115630; 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=UiWI3mfsTL/PRIJj9w1GJNlrdsQXTjzCuAIPvEXd6LE=; b=Cnk+/V9vqRZIRZwfLFEwbp+x30z1JwE6qRBFQJCHZ6lQhJFpz6aopMUHbT4DuQxeKiQTbz BxqrxmiHxfF/2eb56Xforjc/rAh0wa9GOTT88HVWOhX2ykQQDK5EGUOUY4olSGPopWHkiH 4TKnkLtS+fdLOuohUCKEizRq/dtWQp0= 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-145-w5hkmP2kMKqYFWT5yz5Rfw-1; Thu, 12 Oct 2023 09:00:15 -0400 X-MC-Unique: w5hkmP2kMKqYFWT5yz5Rfw-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 62111185A7B4; Thu, 12 Oct 2023 13:00:15 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.34.140]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 2869C492B01; Thu, 12 Oct 2023 13:00:15 +0000 (UTC) From: Aaron Conole To: jspewock@iol.unh.edu Cc: ci@dpdk.org, alialnu@nvidia.com, probb@iol.unh.edu, Adam Hassick Subject: Re: [PATCH v3 1/1] tools: add get_reruns script References: <20230921195637.11369-3-jspewock@iol.unh.edu> <20230921195637.11369-4-jspewock@iol.unh.edu> Date: Thu, 12 Oct 2023 09:00:13 -0400 In-Reply-To: <20230921195637.11369-4-jspewock@iol.unh.edu> (jspewock@iol.unh.edu's message of "Thu, 21 Sep 2023 15:55:31 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.3 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.9 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 jspewock@iol.unh.edu writes: > From: Jeremy Spewock > > This script is used to interact with a patchwork API to collect a > list of retests from comments on patches based on a desired list of > contexts to retest. The script uses regex to scan all of the comments > since a timestamp that is passed into the script through the CLI for > any comment that is requesting a retest. These requests are then filtered > based on the desired contexts that you pass into the script through the > CLI and then aggregated based on the patch series ID of the series that > the comment came from. This aggregated list is then outputted either to > a JSON file or stdout with a timestamp of the most recent comment on > patchworks. > > Signed-off-by: Jeremy Spewock > Signed-off-by: Adam Hassick > --- Applied - thanks!