Skip to content

Commit

Permalink
[PyROOT][NFC] Relax memory test
Browse files Browse the repository at this point in the history
At least on Windows 4KB was sometimes triggering a failure, increase to 16KB
threshold as it still should not represent an issue.
  • Loading branch information
vepadulano committed Jun 12, 2024
1 parent 97ea6cf commit 038054b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/pyroot/pythonizations/test/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class foo {
gc.collect()
after = ROOT.get_rss_MB()
delta = after - before
self.assertLess(delta, 4)
self.assertLess(delta, 16)


if __name__ == '__main__':
Expand Down

0 comments on commit 038054b

Please sign in to comment.