diff options
author | Jhon Honce <jhonce@redhat.com> | 2018-12-05 11:01:56 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2018-12-05 15:42:33 -0700 |
commit | 7c7231ce012afe808689156ded13bc1a78ecf4c5 (patch) | |
tree | b1d7611761752eb834d7b9b2ef3aa65d2af5dab5 /contrib/python/podman/test | |
parent | bbcbf03f7307d75e69de17db06edc7d54c190ffc (diff) | |
download | podman-7c7231ce012afe808689156ded13bc1a78ecf4c5.tar.gz podman-7c7231ce012afe808689156ded13bc1a78ecf4c5.tar.bz2 podman-7c7231ce012afe808689156ded13bc1a78ecf4c5.zip |
Invert tlsverify default in API
Fixes #1929
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'contrib/python/podman/test')
-rw-r--r-- | contrib/python/podman/test/test_images.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/podman/test/test_images.py b/contrib/python/podman/test/test_images.py index f97e13b4c..45f0a2964 100644 --- a/contrib/python/podman/test/test_images.py +++ b/contrib/python/podman/test/test_images.py @@ -102,7 +102,7 @@ class TestImages(PodmanTestCase): def test_push(self): path = '{}/alpine_push'.format(self.tmpdir) target = 'dir:{}'.format(path) - self.alpine_image.push(target) + self.alpine_image.push(target, tlsverify=False) self.assertTrue(os.path.isfile(os.path.join(path, 'manifest.json'))) self.assertTrue(os.path.isfile(os.path.join(path, 'version'))) |