File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ optional-dependencies.dev = [
85
85
" sphinxcontrib-spelling==8" ,
86
86
" sybil==6.1.1" ,
87
87
" tenacity==8.4.2" ,
88
- " types-docker==7.1.0.20240626 " ,
88
+ " types-docker==7.1.0.20240628 " ,
89
89
" types-pillow==10.2.0.20240520" ,
90
90
" types-pyyaml==6.0.12.20240311" ,
91
91
" types-requests==2.32.0.20240622" ,
Original file line number Diff line number Diff line change @@ -157,14 +157,15 @@ def test_build_and_run(
157
157
f"http://{ target_manager_container_name } :5000"
158
158
)
159
159
160
- target_manager_container = client .containers .run ( # pyright: ignore[reportUnknownMemberType]
160
+ target_manager_container = client .containers .run (
161
161
image = target_manager_image ,
162
162
detach = True ,
163
163
name = target_manager_container_name ,
164
164
publish_all_ports = True ,
165
165
network = custom_bridge_network .name ,
166
+ version = "auto" ,
166
167
)
167
- vws_container = client .containers .run ( # pyright: ignore[reportUnknownMemberType]
168
+ vws_container = client .containers .run (
168
169
image = vws_image ,
169
170
detach = True ,
170
171
name = "vws-mock-vws-" + random ,
@@ -173,8 +174,9 @@ def test_build_and_run(
173
174
environment = {
174
175
"TARGET_MANAGER_BASE_URL" : target_manager_internal_base_url ,
175
176
},
177
+ version = "auto" ,
176
178
)
177
- vwq_container = client .containers .run ( # pyright: ignore[reportUnknownMemberType]
179
+ vwq_container = client .containers .run (
178
180
image = vwq_image ,
179
181
detach = True ,
180
182
name = "vws-mock-vwq-" + random ,
@@ -183,6 +185,7 @@ def test_build_and_run(
183
185
environment = {
184
186
"TARGET_MANAGER_BASE_URL" : target_manager_internal_base_url ,
185
187
},
188
+ version = "auto" ,
186
189
)
187
190
188
191
for container in (target_manager_container , vws_container , vwq_container ):
You can’t perform that action at this time.
0 commit comments