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: Tests running twice.
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: methane, musically_ut
Priority: normal Keywords:

Created on 2017-07-26 10:20 by musically_ut, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 2891 merged musically_ut, 2017-07-26 10:21
Messages (2)
msg299218 - (view) Author: Utkarsh Upadhyay (musically_ut) * Date: 2017-07-26 10:20
Due to a rebase artifact (sorry!), the tests for the datetime module are being run twice:

test_datetime.py:

[...]
        cls.tearDownClass = tearDownClass
    all_test_classes.extend(test_classes)

    all_test_classes.extend(test_classes)

def test_main():
    run_unittest(*all_test_classes)
[...]


Fix coming shortly.
msg299219 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2017-07-26 10:46
New changeset ede9084476f88f5a86c7eaaac33cdd938e4cce93 by INADA Naoki (Utkarsh Upadhyay) in branch 'master':
bpo-31043: fixed test_datetime run twice. (GH-2891)
https://github.com/python/cpython/commit/ede9084476f88f5a86c7eaaac33cdd938e4cce93
History
Date User Action Args
2022-04-11 14:58:49adminsetgithub: 75226
2017-07-26 10:59:58methanesetstatus: open -> closed
resolution: fixed
stage: resolved
2017-07-26 10:46:21methanesetnosy: + methane
messages: + msg299219
2017-07-26 10:21:38musically_utsetpull_requests: + pull_request2943
2017-07-26 10:20:49musically_utcreate