[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2019-05-10 Thread Ned Deily
Change by Ned Deily : -- Removed message: https://bugs.python.org/msg342100 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2019-05-10 Thread Ned Deily
Ned Deily added the comment: New changeset b1549175ed30f2931e2bb980a7e3c360ed19e1c9 by larryhastings (Victor Stinner) in branch '3.4': [3.4] Backport CI config from master (#2475) https://github.com/python/cpython/commit/b1549175ed30f2931e2bb980a7e3c360ed19e1c9 --

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-07-22 Thread Larry Hastings
Larry Hastings added the comment: New changeset b1549175ed30f2931e2bb980a7e3c360ed19e1c9 by larryhastings (Victor Stinner) in branch '3.4': [3.4] Backport CI config from master (#2475) https://github.com/python/cpython/commit/b1549175ed30f2931e2bb980a7e3c360ed19e1c9 -- nosy: +larry

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-07-20 Thread Ned Deily
Ned Deily added the comment: New changeset b5f20ea91ec4d9dc7e1c31629903888c651bd02c by Ned Deily (Victor Stinner) in branch '3.3': [3.3] Backport CI config from master and remove skipped imaplib tests (#2481) https://github.com/python/cpython/commit/b5f20ea91ec4d9dc7e1c31629903888c651bd02c

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-07-04 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2634 ___ Python tracker ___ ___

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-06-14 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.5, Python 3.6 ___ Python tracker

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-06-14 Thread STINNER Victor
STINNER Victor added the comment: New changeset 7895a0585b4b6a1c8082d17227307c6ce2c8bb8b by Victor Stinner in branch '3.5': bpo-30231: Remove skipped test_imaplib tests (#1419) (#2193) https://github.com/python/cpython/commit/7895a0585b4b6a1c8082d17227307c6ce2c8bb8b --

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-06-14 Thread STINNER Victor
STINNER Victor added the comment: New changeset 8a39af945796164a16a607fecfef5297b7a87deb by Victor Stinner in branch '3.6': bpo-30231: Remove skipped test_imaplib tests (#1419) (#2192) https://github.com/python/cpython/commit/8a39af945796164a16a607fecfef5297b7a87deb --

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-06-14 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2238 ___ Python tracker ___ ___

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-06-14 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2237 ___ Python tracker ___ ___

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-06-14 Thread STINNER Victor
STINNER Victor added the comment: New changeset b18563da8803433509e9a0e29718e0271014659f by Victor Stinner in branch 'master': bpo-30231: Remove skipped test_imaplib tests (#1419) https://github.com/python/cpython/commit/b18563da8803433509e9a0e29718e0271014659f --

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-05-10 Thread Berker Peksag
Berker Peksag added the comment: > Is it to validate that we have bugs? :) More or less, yes. Since the problem is not in the library code and the tests are not completely useless, using @unittest.expectedFailure might be a better short term solution than skipping or removing them (at least

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-05-10 Thread STINNER Victor
STINNER Victor added the comment: > I'd suggest marking them with @unittest.expectedFailure as an alternative way > to move forward. I don't understand the purpose of tests known to fail. Is it to validate that we have bugs? :) -- ___ Python

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-05-05 Thread Berker Peksag
Berker Peksag added the comment: I'd suggest marking them with @unittest.expectedFailure as an alternative way to move forward. -- nosy: +berker.peksag stage: -> patch review type: -> behavior ___ Python tracker

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-05-04 Thread STINNER Victor
STINNER Victor added the comment: If no one speak up to propose a fix for the two skipped tests before a deadline of two weeks, I will removed them, apply: https://github.com/python/cpython/pull/1419 -- ___ Python tracker

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-05-03 Thread STINNER Victor
STINNER Victor added the comment: > It would be best if these tests could be replaced by something local. Is there someone interested to write such local IMAP server to test test_imaplib using a client x509 certificate? > Failing that, I suppose we'll have to remove them. That's not my

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-05-03 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +1525 ___ Python tracker ___ ___

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-05-02 Thread Benjamin Peterson
Benjamin Peterson added the comment: I can't say I'm very interested in running a imap server. It would be best if these tests could be replaced by something local. Failing that, I suppose we'll have to remove them. -- ___ Python tracker

[issue30231] test_imaplib needs a TLS server accepting self-signed certificates

2017-05-02 Thread STINNER Victor
New submission from STINNER Victor: The public cyrus.andrew.cmu.edu IMAP server (port 993) doesn't accept TLS connection using our self-signed x509 certificate. The following two tests of test_imaplib were skipped by the issue #30175: * test_logincapa_with_client_certfile() of