We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b240124 commit 56874c8Copy full SHA for 56874c8
tests/integration_tests/functional/test_balloon.py
@@ -33,9 +33,11 @@ def get_rss_from_pmap():
33
first_rss = get_rss_from_pmap()
34
time.sleep(1)
35
second_rss = get_rss_from_pmap()
36
- print(f"RSS readings: {first_rss}, {second_rss}")
37
abs_diff = abs(first_rss - second_rss)
38
abs_delta = 100 * abs_diff / first_rss
+ print(
39
+ f"RSS readings: old: {first_rss} new: {second_rss} abs_diff: {abs_diff} abs_delta: {abs_delta}"
40
+ )
41
assert abs_delta < percentage_delta or abs_diff < 2**10
42
return second_rss
43
0 commit comments