* [PATCH] tests/functional/x86_64/test_virtio_balloon: Fix cosmetic issues from pylint
@ 2025-10-29 7:53 Thomas Huth
2025-10-29 7:59 ` Manos Pitsidianakis
2025-10-29 15:42 ` Zhao Liu
0 siblings, 2 replies; 3+ messages in thread
From: Thomas Huth @ 2025-10-29 7:53 UTC (permalink / raw)
To: Michael S. Tsirkin, David Hildenbrand, Paolo Bonzini; +Cc: Zhao Liu, qemu-devel
From: Thomas Huth <thuth@redhat.com>
Pylint complains about some style issues in this file: Unused variables
should be marked with an underscore, "when > then and when < now"
can be simplified to "now > when > then" and expectData doesn't conform
to the usual snake_case naming style.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
tests/functional/x86_64/test_virtio_balloon.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/functional/x86_64/test_virtio_balloon.py b/tests/functional/x86_64/test_virtio_balloon.py
index 5877b6c408c..7a579e0d69a 100755
--- a/tests/functional/x86_64/test_virtio_balloon.py
+++ b/tests/functional/x86_64/test_virtio_balloon.py
@@ -66,7 +66,7 @@ def assert_initial_stats(self):
when = ret.get('last-update')
assert when == 0
stats = ret.get('stats')
- for name, val in stats.items():
+ for _name, val in stats.items():
assert val == UNSET_STATS_VALUE
def assert_running_stats(self, then):
@@ -87,10 +87,10 @@ def assert_running_stats(self, then):
now = time.time()
- assert when > then and when < now
+ assert now > when > then
stats = ret.get('stats')
# Stat we expect this particular Kernel to have set
- expectData = [
+ expect_data = [
"stat-available-memory",
"stat-disk-caches",
"stat-free-memory",
@@ -103,7 +103,7 @@ def assert_running_stats(self, then):
"stat-total-memory",
]
for name, val in stats.items():
- if name in expectData:
+ if name in expect_data:
assert val != UNSET_STATS_VALUE
else:
assert val == UNSET_STATS_VALUE
--
2.51.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] tests/functional/x86_64/test_virtio_balloon: Fix cosmetic issues from pylint
2025-10-29 7:53 [PATCH] tests/functional/x86_64/test_virtio_balloon: Fix cosmetic issues from pylint Thomas Huth
@ 2025-10-29 7:59 ` Manos Pitsidianakis
2025-10-29 15:42 ` Zhao Liu
1 sibling, 0 replies; 3+ messages in thread
From: Manos Pitsidianakis @ 2025-10-29 7:59 UTC (permalink / raw)
To: Thomas Huth
Cc: Michael S. Tsirkin, David Hildenbrand, Paolo Bonzini, Zhao Liu,
qemu-devel
On Wed, Oct 29, 2025 at 9:54 AM Thomas Huth <thuth@redhat.com> wrote:
>
> From: Thomas Huth <thuth@redhat.com>
>
> Pylint complains about some style issues in this file: Unused variables
> should be marked with an underscore, "when > then and when < now"
> can be simplified to "now > when > then" and expectData doesn't conform
> to the usual snake_case naming style.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
> tests/functional/x86_64/test_virtio_balloon.py | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/tests/functional/x86_64/test_virtio_balloon.py b/tests/functional/x86_64/test_virtio_balloon.py
> index 5877b6c408c..7a579e0d69a 100755
> --- a/tests/functional/x86_64/test_virtio_balloon.py
> +++ b/tests/functional/x86_64/test_virtio_balloon.py
> @@ -66,7 +66,7 @@ def assert_initial_stats(self):
> when = ret.get('last-update')
> assert when == 0
> stats = ret.get('stats')
> - for name, val in stats.items():
> + for _name, val in stats.items():
> assert val == UNSET_STATS_VALUE
>
> def assert_running_stats(self, then):
> @@ -87,10 +87,10 @@ def assert_running_stats(self, then):
>
> now = time.time()
>
> - assert when > then and when < now
> + assert now > when > then
> stats = ret.get('stats')
> # Stat we expect this particular Kernel to have set
> - expectData = [
> + expect_data = [
> "stat-available-memory",
> "stat-disk-caches",
> "stat-free-memory",
> @@ -103,7 +103,7 @@ def assert_running_stats(self, then):
> "stat-total-memory",
> ]
> for name, val in stats.items():
> - if name in expectData:
> + if name in expect_data:
> assert val != UNSET_STATS_VALUE
> else:
> assert val == UNSET_STATS_VALUE
> --
> 2.51.0
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] tests/functional/x86_64/test_virtio_balloon: Fix cosmetic issues from pylint
2025-10-29 7:53 [PATCH] tests/functional/x86_64/test_virtio_balloon: Fix cosmetic issues from pylint Thomas Huth
2025-10-29 7:59 ` Manos Pitsidianakis
@ 2025-10-29 15:42 ` Zhao Liu
1 sibling, 0 replies; 3+ messages in thread
From: Zhao Liu @ 2025-10-29 15:42 UTC (permalink / raw)
To: Thomas Huth
Cc: Michael S. Tsirkin, David Hildenbrand, Paolo Bonzini, qemu-devel
On Wed, Oct 29, 2025 at 08:53:42AM +0100, Thomas Huth wrote:
> Date: Wed, 29 Oct 2025 08:53:42 +0100
> From: Thomas Huth <thuth@redhat.com>
> Subject: [PATCH] tests/functional/x86_64/test_virtio_balloon: Fix cosmetic
> issues from pylint
>
> From: Thomas Huth <thuth@redhat.com>
>
> Pylint complains about some style issues in this file: Unused variables
> should be marked with an underscore, "when > then and when < now"
> can be simplified to "now > when > then" and expectData doesn't conform
> to the usual snake_case naming style.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> tests/functional/x86_64/test_virtio_balloon.py | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
LGTM,
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-10-29 15:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-29 7:53 [PATCH] tests/functional/x86_64/test_virtio_balloon: Fix cosmetic issues from pylint Thomas Huth
2025-10-29 7:59 ` Manos Pitsidianakis
2025-10-29 15:42 ` Zhao Liu
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).