DPDK patches and discussions
 help / color / mirror / Atom feed
From: Patrick Robb <probb@iol.unh.edu>
To: Luca Vizzarro <luca.vizzarro@arm.com>
Cc: dev@dpdk.org, Paul Szczepanek <Paul.Szczepanek@arm.com>
Subject: Re: [PATCH v2 0/7] dts: add Ruff and docstring linting
Date: Fri, 20 Dec 2024 18:14:06 -0500	[thread overview]
Message-ID: <CAJvnSUD1Tfx-4EL-xrtDmLshyzURE97yVXV6D-ruDRRq22pCWw@mail.gmail.com> (raw)
In-Reply-To: <20241212140013.17548-1-luca.vizzarro@arm.com>

[-- Attachment #1: Type: text/plain, Size: 2216 bytes --]

Series-reviewed-by: Patrick Robb <probb@iol.unh.edu>
Tested-by: Patrick Robb <probb@iol.unh.edu>

Paul I will merge to next-dts now instead of waiting until after Winter
holidays if that is okay with you.

On Thu, Dec 12, 2024 at 9:02 AM Luca Vizzarro <luca.vizzarro@arm.com> wrote:

> v2:
> - updated the doc page
>
> Luca Vizzarro (7):
>   dts: add Ruff as linter and formatter
>   dts: enable Ruff preview pydoclint rules
>   dts: resolve docstring linter errors
>   dts: apply Ruff formatting
>   dts: update dts-check-format to use Ruff
>   dts: remove old linters and formatters
>   dts: update linters in doc page
>
>  devtools/dts-check-format.sh                  |  30 +--
>  doc/guides/tools/dts.rst                      |  26 +--
>  dts/framework/params/eal.py                   |   5 +-
>  dts/framework/remote_session/dpdk_shell.py    |   1 -
>  dts/framework/remote_session/python_shell.py  |   1 +
>  .../single_active_interactive_shell.py        |   3 +-
>  dts/framework/runner.py                       |  14 +-
>  dts/framework/settings.py                     |   3 +
>  dts/framework/test_suite.py                   |   6 +-
>  dts/framework/testbed_model/capability.py     |  13 +-
>  dts/framework/testbed_model/cpu.py            |  21 +-
>  dts/framework/testbed_model/linux_session.py  |   6 +-
>  dts/framework/testbed_model/node.py           |   3 +
>  dts/framework/testbed_model/os_session.py     |   3 +-
>  dts/framework/testbed_model/port.py           |   1 -
>  dts/framework/testbed_model/posix_session.py  |  16 +-
>  dts/framework/testbed_model/sut_node.py       |   2 +-
>  dts/framework/testbed_model/topology.py       |   6 +
>  .../traffic_generator/__init__.py             |   3 +
>  .../testbed_model/traffic_generator/scapy.py  |   7 +-
>  .../traffic_generator/traffic_generator.py    |   3 +-
>  dts/framework/utils.py                        |   6 +-
>  dts/poetry.lock                               | 197 +++---------------
>  dts/pyproject.toml                            |  40 ++--
>  dts/tests/TestSuite_vlan.py                   |  22 +-
>  25 files changed, 179 insertions(+), 259 deletions(-)
>
> --
> 2.43.0
>
>

[-- Attachment #2: Type: text/html, Size: 2960 bytes --]

      parent reply	other threads:[~2024-12-20 23:16 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-10 10:32 [PATCH 0/6] " Luca Vizzarro
2024-12-10 10:32 ` [PATCH 1/6] dts: add Ruff as linter and formatter Luca Vizzarro
2024-12-10 10:32 ` [PATCH 2/6] dts: enable Ruff preview pydoclint rules Luca Vizzarro
2024-12-10 10:32 ` [PATCH 3/6] dts: fix docstring linter errors Luca Vizzarro
2024-12-10 10:32 ` [PATCH 4/6] dts: apply Ruff formatting Luca Vizzarro
2024-12-10 10:32 ` [PATCH 5/6] dts: update dts-check-format to use Ruff Luca Vizzarro
2024-12-10 10:32 ` [PATCH 6/6] dts: remove old linters and formatters Luca Vizzarro
2024-12-12 14:00 ` [PATCH v2 0/7] dts: add Ruff and docstring linting Luca Vizzarro
2024-12-12 14:00   ` [PATCH v2 1/7] dts: add Ruff as linter and formatter Luca Vizzarro
2024-12-12 14:00   ` [PATCH v2 2/7] dts: enable Ruff preview pydoclint rules Luca Vizzarro
2024-12-12 14:00   ` [PATCH v2 3/7] dts: resolve docstring linter errors Luca Vizzarro
2024-12-12 14:00   ` [PATCH v2 4/7] dts: apply Ruff formatting Luca Vizzarro
2024-12-12 14:00   ` [PATCH v2 5/7] dts: update dts-check-format to use Ruff Luca Vizzarro
2024-12-12 14:00   ` [PATCH v2 6/7] dts: remove old linters and formatters Luca Vizzarro
2024-12-12 14:00   ` [PATCH v2 7/7] dts: update linters in doc page Luca Vizzarro
2024-12-17 10:15     ` Xu, HailinX
2024-12-20 23:14   ` Patrick Robb [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAJvnSUD1Tfx-4EL-xrtDmLshyzURE97yVXV6D-ruDRRq22pCWw@mail.gmail.com \
    --to=probb@iol.unh.edu \
    --cc=Paul.Szczepanek@arm.com \
    --cc=dev@dpdk.org \
    --cc=luca.vizzarro@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).