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: test_email fails with -R
Type: behavior Stage: resolved
Components: Library (Lib), Tests Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: r.david.murray Nosy List: barry, pitrou, python-dev, r.david.murray, skrah
Priority: normal Keywords:

Created on 2011-08-20 01:07 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg142510 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2011-08-20 01:07
$ ./python -m test -R 3:2 test_email
[1/1] test_email
beginning 5 repetitions
12345
Warning -- sys.path was modified by test_email
test test_email failed -- Traceback (most recent call last):
  File "/home/antoine/cpython/default/Lib/test/test_email/test_policy.py", line 136, in test_overriden_register_defect_works
    self.assertEqual(my_policy.defects, [defect1])
AssertionError: Lists differ: [MyDefect('one',), MyDefect('t... != [MyDefect('one',)]

First differing element 0:
one
one

First list contains 2 additional elements.
First extra element 1:
two

- [MyDefect('one',), MyDefect('two',), MyDefect('one',)]
+ [MyDefect('one',)]

1 test failed:
    test_email
msg156120 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-03-17 01:40
New changeset 474338602bd8 by R David Murray in branch 'default':
#12788: fix error in test_policy when run under refleak detection
http://hg.python.org/cpython/rev/474338602bd8
History
Date User Action Args
2022-04-11 14:57:20adminsetgithub: 56997
2012-03-17 01:40:59r.david.murraysetstatus: open -> closed
resolution: fixed
stage: resolved
2012-03-17 01:40:24python-devsetnosy: + python-dev
messages: + msg156120
2011-10-01 06:39:34skrahlinkissue13080 superseder
2011-09-06 23:16:08skrahsetnosy: + skrah
2011-08-21 23:27:34r.david.murraysetassignee: r.david.murray
2011-08-20 01:07:21pitroucreate