Skip to content

Commit 3aa7598

Browse files
committed
Test backwards compatibility tests
1 parent 2eee935 commit 3aa7598

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

components/marqo/tests/compatibility_tests/docker_manager.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,13 @@ def _start_marqo_container_post_2250(
206206
compose_content['services']['mioc']['image'] = inference_orchestrator_image
207207
compose_content['services']['mmc']['image'] = model_management_image
208208

209+
for services in ['api', 'mioc', 'mmc']:
210+
if "build" in compose_content['services'][services]:
211+
del compose_content['services'][services]['build']
212+
209213
yaml.dump(compose_content, fp)
210214
fp.flush()
211-
print(compose_content)
215+
self.logger.info(f"Marqo backwards compatibility test using compose file: {compose_file}")
212216
self.compose_file= Path(fp.name).absolute()
213217

214218
subprocess.run(

0 commit comments

Comments
 (0)