Issue 17774: unable to disable -r in run_tests.py (original) (raw)

Issue17774

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:44 admin set github: 61974
2019-05-18 01:19:59 cheryl.sabella set nosy: + cheryl.sabellamessages: + versions: + Python 3.8, - Python 3.4, Python 3.5
2014-08-03 20:38:59 BreamoreBoy set versions: + Python 3.5, - Python 3.3
2013-04-17 13:03:01 doko create