File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
test/integration_new/context_managers Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -68,10 +68,11 @@ def main():
68
68
'bottle' ,
69
69
'jsonpatch>1.14' ,
70
70
'sqlalchemy<1.4.0' ,
71
- 'pytest' ,
72
- 'pytest-timeout' ,
73
- 'pytest-cov' ,
74
- 'pytest-lazy-fixture' ,
71
+ # pytest 8.0.0 is not compatible, so we need to use the latest version of pytest 7.x
72
+ 'pytest<8.0.0' ,
73
+ 'pytest-timeout<3.0.0' ,
74
+ 'pytest-cov<5.0.0' ,
75
+ 'pytest-lazy-fixture<1.0.0' ,
75
76
'pytz' ,
76
77
'urllib3<2'
77
78
]
Original file line number Diff line number Diff line change 6
6
7
7
class BoxRetentionPolicy :
8
8
9
- DEFAULT_RETENTION_POLICY_NAME = "modifiable_retention_policy_for_integration_tests "
9
+ DEFAULT_RETENTION_POLICY_NAME = "modifiable_retention_policy_for_integration_tests_extendable_by_owner "
10
10
11
11
def __init__ (
12
12
self ,
@@ -26,6 +26,7 @@ def __init__(
26
26
policy_name = name ,
27
27
disposition_action = disposition_action ,
28
28
retention_length = retention_length ,
29
+ can_owner_extend_retention = True ,
29
30
retention_type = 'modifiable'
30
31
)
31
32
You can’t perform that action at this time.
0 commit comments