Skip to content

Commit 60316c0

Browse files
committed
Revert memory test threshold to 13MB
Revert MAX_GROWTH_BYTES from 10MB back to 13MB in test_resource_leaks.py as tests are still using elevated memory and the reduction cannot be implemented currently. The weakref removal changes remain as they are still valid.
1 parent 96fe521 commit 60316c0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/functional/leak/test_resource_leaks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ class TestDoesNotLeakMemory(BaseClientDriverTest):
2222
# a substantial amount of time to the total test run time.
2323
INJECT_DUMMY_CREDS = True
2424
# We're making up numbers here, but let's say arbitrarily
25-
# that the memory can't increase by more than 10MB.
25+
# that the memory can't increase by more than 13MB.
2626

2727
# TODO: Attempt to bring this back to 10MB once Python 3.14 releases
28-
MAX_GROWTH_BYTES = 10 * 1024 * 1024
28+
MAX_GROWTH_BYTES = 13 * 1024 * 1024
2929

3030
def test_create_single_client_memory_constant(self):
3131
self.cmd('create_client', 's3')

0 commit comments

Comments
 (0)