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.

classification
Title: SSL cert failure running make test during Python 3.6 install
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.6
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: Ben Johnston, christian.heimes, iritkatriel
Priority: normal Keywords:

Created on 2017-07-11 06:02 by Ben Johnston, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_log.log Ben Johnston, 2017-07-11 06:02 stdout of make tests
Messages (3)
msg298125 - (view) Author: Ben Johnston (Ben Johnston) Date: 2017-07-11 06:02
Installing Python 3.6.1 from Python-3.6.1.tar.xz on Ubuntu 16.04.2 LTS, the following tests are failing:

ERROR: test_logincapa_with_client_certfile (test.test_imaplib.RemoteIMAP_SSLTest)

ERROR: test_logincapa_with_client_ssl_context (test.test_imaplib.RemoteIMAP_SSLTest)

./configure
make
make test

I also tried running ./configure --enable-optimizations, however the tests still failed with identical results.  I have uploaded the stdout of the test process, verbose mode during testing also didnt work and reported this error

ModuleNotFoundError: No module named 'test.test_that_failed'

1 test failed again:
    test_that_failed

Total duration: 131 ms
Tests result: FAILURE
make: *** [test] Error 1
Makefile:1018: recipe for target 'test' failed
msg391227 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2021-04-16 16:50
Python 3.6 is no longer maintained. Are you seeing this on a more recent version?
msg391431 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2021-04-20 12:03
I'm closing the ticket as out of date. Please feel free to reopen the ticket if you can reproduce the problem with a more recent version of Python.
History
Date User Action Args
2022-04-11 14:58:48adminsetgithub: 75081
2021-04-20 12:03:20christian.heimessetstatus: pending -> closed

nosy: + christian.heimes
messages: + msg391431

stage: resolved
2021-04-16 16:50:04iritkatrielsetstatus: open -> pending

nosy: + iritkatriel
messages: + msg391227

resolution: out of date
2017-07-11 06:02:02Ben Johnstoncreate