Exemple #1
0
 def testBroadDockerRepo(self):
     """Image exists.  This should pass."""
     broad_repo = 'broadinstitute/genomes-in-the-cloud:2.0.0'
     assert checkDockerImageExists(broad_repo)
Exemple #2
0
 def testBroadDockerRepoBadTag(self):
     """Bad tag.  This should raise."""
     broad_repo = 'broadinstitute/genomes-in-the-cloud:-----'
     with self.assertRaises(ImageNotFound):
         checkDockerImageExists(broad_repo)
Exemple #3
0
 def testOfficialUbuntuRepo(self):
     """Image exists.  This should pass."""
     ubuntu_repo = 'ubuntu:latest'
     assert checkDockerImageExists(ubuntu_repo)