Merge branch 'develop' into refactor-code
This commit is contained in:
commit
8729b1b0d0
2 changed files with 3 additions and 3 deletions
|
|
@ -75,7 +75,7 @@ class TestCachingUtils(IntegrationTestCase):
|
|||
|
||||
# ensure single call if key is hashable
|
||||
for arg in hashable_values:
|
||||
external_service.call_count = 0
|
||||
external_service.reset_mock()
|
||||
for _ in range(2):
|
||||
request_specific_api(arg, 13)
|
||||
|
||||
|
|
@ -83,7 +83,7 @@ class TestCachingUtils(IntegrationTestCase):
|
|||
|
||||
# multiple calls if key cannot be generated
|
||||
for arg in unhashable_values:
|
||||
external_service.call_count = 0
|
||||
external_service.reset_mock()
|
||||
for _ in range(2):
|
||||
request_specific_api(arg, 13)
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ dependencies = [
|
|||
"filetype~=1.2.0",
|
||||
"GitPython~=3.1.45",
|
||||
"Jinja2~=3.1.6",
|
||||
"Pillow~=12.0.0",
|
||||
"Pillow~=12.1.1",
|
||||
"PyJWT~=2.10.1",
|
||||
# We depend on internal attributes,
|
||||
# do NOT add loose requirements on PyMySQL versions.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue