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: unable to disable -r in run_tests.py
Type: behavior Stage: needs patch
Components: Tests Versions: Python 3.8
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: cheryl.sabella, doko
Priority: normal Keywords:

Created on 2013-04-17 13:03 by doko, last changed 2022-04-11 14:57 by admin.

Messages (2)
msg187160 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2013-04-17 13:03
it is not possible to disable -r in run_tests.py. Other options like -u or -j can be overwritten, but not removing -r.
msg342781 - (view) Author: Cheryl Sabella (cheryl.sabella) * (Python committer) Date: 2019-05-18 01:19
Since -r doesn't usually take a value, what would be the best way to implement this?  The current implementation always adds -r, so not including '-r' would need to retain the current behavior of randomization.  Would something like '--no-random' be a good way to implement this?  That would be different than how the program handles the -u or -j because the '--no-random' would have to be removed from regrtest_args.
History
Date User Action Args
2022-04-11 14:57:44adminsetgithub: 61974
2019-05-18 01:19:59cheryl.sabellasetnosy: + cheryl.sabella

messages: + msg342781
versions: + Python 3.8, - Python 3.4, Python 3.5
2014-08-03 20:38:59BreamoreBoysetversions: + Python 3.5, - Python 3.3
2013-04-17 13:03:01dokocreate