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 schlamar
Recipients schlamar
Date 2014-03-17.09:38:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395049138.68.0.283816495419.issue20954@psf.upfronthosting.co.za>
In-reply-to
Content
Steps to reproduce:

- clone pytest-cov at https://bitbucket.org/schlamar/pytest-cov/commits/ac14225a67d715b6649f8158e05d2389b78620d2
- remove `@pytest.mark.skipif` from `test_multiprocessing_subprocess` in test_pytest_cov.py
- run: `tox --develop -e py27 -- -x`

Result: it fails with MemoryError in `subprocess._args_from_interpreter_flags` because sys.flags.hash_randomization has a value of 2147483647 and it tries to build a string with such a length. Find more details in attached log. Patch is following.
History
Date User Action Args
2014-03-17 09:38:58schlamarsetrecipients: + schlamar
2014-03-17 09:38:58schlamarsetmessageid: <1395049138.68.0.283816495419.issue20954@psf.upfronthosting.co.za>
2014-03-17 09:38:58schlamarlinkissue20954 messages
2014-03-17 09:38:58schlamarcreate