This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients asvetlov, cstratak, vstinner, yselivanov
Date 2018-11-30.16:26:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543595216.85.0.788709270274.issue35352@psf.upfronthosting.co.za>
In-reply-to
Content
> The strange thing is these tests are passed on our build bots.

RHEL8 has a very strict security policy by default. I'm not sure if any OS run on buildbot has a security policy as strict as RHEL8?

> Maybe bumping used protocol version will help to pass tests on your box.

I tried to tune the SSLContext in many different ways but it doesn't work. The problem comes from the .pem files.

I confirm that copying .pem files from Lib/test/ into Lib/test/test_asyncio/ does fix the issue.

> And by looking at https://github.com/python/cpython/commit/6d8c1abb003a4cb05f1ddcf0eeddeeeed513cd57#diff-a8e7dbb528601706db0f01d01332bb76 it seems that those certs are just copied from test/ within test_asyncio/. So by copying over the old certs, the tests actually pass.

In this case, I don't see the point of having two copies of the same files.

PR 10826 does the right fix: remove .pem files from Lib/test/test_asyncio/ and reuse .pem files from Lib/test/.
History
Date User Action Args
2018-11-30 16:26:56vstinnersetrecipients: + vstinner, asvetlov, yselivanov, cstratak
2018-11-30 16:26:56vstinnersetmessageid: <1543595216.85.0.788709270274.issue35352@psf.upfronthosting.co.za>
2018-11-30 16:26:56vstinnerlinkissue35352 messages
2018-11-30 16:26:56vstinnercreate