From a9d1062109f5bb66209fca1ab647f7471bcd92c5 Mon Sep 17 00:00:00 2001 From: John Siirola Date: Fri, 11 Jan 2019 14:43:09 -0700 Subject: [PATCH] Include the cacert in the PUT call when uploading to S3 --- codecov/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/codecov/__init__.py b/codecov/__init__.py index 80d997cf..301c0011 100644 --- a/codecov/__init__.py +++ b/codecov/__init__.py @@ -1095,6 +1095,7 @@ def main(*argv, **kwargs): write(" Uploading to S3...") s3 = requests.put( upload_url, + verify=codecov.cacert, data=reports_gzip, headers={ "Content-Type": "application/x-gzip",