<div dir="ltr">Good catch Aaron, sorry that I missed this in my review. <div><br></div><div>We will accept your offer to amend the commit on apply. :)</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Oct 7, 2024 at 11:53 AM Aaron Conole <<a href="mailto:aconole@redhat.com">aconole@redhat.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Manit Mahajan <<a href="mailto:mmahajan@iol.unh.edu" target="_blank">mmahajan@iol.unh.edu</a>> writes:<br>
<br>
> DTS provides a check-format script which runs a series of code quality<br>
> checks including formatting, linting, and type-checking using the<br>
> following tools: black, isort, pylama, and mypy. Developers are supposed<br>
> to run this script before submitting their patch series. In CI testing,<br>
> we want to run this formatting script on all patches which modify<br>
> dpdk/dts/* going forward, and submit a new patchwork check named<br>
> dts-check-format. In order to do this, we need to be able to set a tag<br>
> in the patch parser script for all patch series which meet this<br>
> condition. This series adds the dts tag and path assignment to<br>
> config/patch_parser.cfg.<br>
><br>
> Signed-off-by: Manit Mahajan<br>
> ---<br>
<br>
Hi Manit,<br>
<br>
FYI, your signed-off-by line is incorrect.  It is missing the email<br>
address.  I can add it on apply if you are okay with that, but in the<br>
future, it should look like::<br>
<br>
  Signed-off-by: Manit Mahajan <<a href="mailto:mmahajan@iol.unh.edu" target="_blank">mmahajan@iol.unh.edu</a>><br>
<br>
Thanks!<br>
<br>
>  config/patch_parser.cfg | 4 +++-<br>
>  1 file changed, 3 insertions(+), 1 deletion(-)<br>
><br>
> diff --git a/config/patch_parser.cfg b/config/patch_parser.cfg<br>
> index 5757f9a..dac3b23 100644<br>
> --- a/config/patch_parser.cfg<br>
> +++ b/config/patch_parser.cfg<br>
> @@ -13,6 +13,7 @@ app = application<br>
>  license = documentation<br>
>  VERSION = documentation<br>
>  build = core<br>
> +dts = dts<br>
>  <br>
>  # This is an ordered list of the importance of each patch classification.<br>
>  # It should be used to determine which classification to use on tools which<br>
> @@ -22,4 +23,5 @@ priority_list =<br>
>      core,<br>
>      driver,<br>
>      application,<br>
> -    documentation<br>
> +    documentation,<br>
> +    dts<br>
<br>
</blockquote></div>