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 barry, maxking, r.david.murray, serhiy.storchaka, vstinner, xtreak
Date 2020-01-09.11:21:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1578568888.72.0.401440323535.issue39029@roundup.psfhosted.org>
In-reply-to
Content
> I was always under the assumption that -j 4 runs tests in parallel

If you run one test file, even with -j1000, only one test file will be run in parallel :-)

To run the same file in parallel, you have to ask to run it more than once: "-j2 test_mailbox test_mailbox" or "-j2 test_mailbox -F" for example.

-F runs the same tests in a loop until it fails. It's a convenient way to run the same test in parallel to detect race conditions ;-)
History
Date User Action Args
2020-01-09 11:21:28vstinnersetrecipients: + vstinner, barry, r.david.murray, serhiy.storchaka, maxking, xtreak
2020-01-09 11:21:28vstinnersetmessageid: <1578568888.72.0.401440323535.issue39029@roundup.psfhosted.org>
2020-01-09 11:21:28vstinnerlinkissue39029 messages
2020-01-09 11:21:28vstinnercreate