File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ def test_build_and_run(
163
163
name = target_manager_container_name ,
164
164
publish_all_ports = True ,
165
165
network = custom_bridge_network .name ,
166
- version = target_manager_tag ,
166
+ version = target_manager_image . tags [ 0 ] ,
167
167
)
168
168
vws_container = client .containers .run (
169
169
image = vws_image ,
@@ -174,7 +174,7 @@ def test_build_and_run(
174
174
environment = {
175
175
"TARGET_MANAGER_BASE_URL" : target_manager_internal_base_url ,
176
176
},
177
- version = vws_tag ,
177
+ version = vws_image . tags [ 0 ] ,
178
178
)
179
179
vwq_container = client .containers .run (
180
180
image = vwq_image ,
@@ -185,7 +185,7 @@ def test_build_and_run(
185
185
environment = {
186
186
"TARGET_MANAGER_BASE_URL" : target_manager_internal_base_url ,
187
187
},
188
- version = vwq_tag ,
188
+ version = vwq_image . tags [ 0 ] ,
189
189
)
190
190
191
191
for container in (target_manager_container , vws_container , vwq_container ):
You can’t perform that action at this time.
0 commit comments