Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
haimasree committed Apr 4, 2022
1 parent 76c0ec1 commit 54c3182
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-containers/test_containers_from_command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ def test_images(self, test_docker_image):
if self.modelgroup_name != "DeepSEA":
break
elif self.image_name not in [None, "kipoi-base-env"]:
all_models = self.docker_to_model_dict.get(self.image_name)
models = self.docker_to_model_dict.get(self.image_name)
if "shared" in self.image_name:
models = one_model_per_modelgroup(all_models)
models = one_model_per_modelgroup(models)
for model in models:
print(f"Testing {model} with {self.image_name}")
test_docker_image(model_name=model, image_name=self.image_name)

0 comments on commit 54c3182

Please sign in to comment.