Skip to content

Commit 9cca1a6

Browse files
Apply suggestions from code review
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent d52de6a commit 9cca1a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

testing/buildbots.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@ Let's assume, for the sake of example, that the output starts with:
181181
0:00:01 load avg: 3.34 [ 1/500] test_colorsys passed
182182
0:00:01 load avg: 3.34 [ 2/500] test_float passed
183183
184-
You can reproduce the exact same order using::
184+
You can reproduce the exact same order by adding the ``--randseed 1000348774`` option::
185185

186-
./python -W error -E -bb -m test -uall -rwW --randseed 1000348774
186+
./python -E -m test --slow-ci --timeout=2400 -j2 -u-cpu,-urlfetch,-network --junit-xml test-results.xml -j4 --randseed 1000348774
187187

188188
It will run the following sequence (trimmed for brevity):
189189

@@ -204,7 +204,7 @@ failure. Copy and paste the test sequence in a text file, then use the
204204
``--fromfile`` (or ``-f``) option of the test runner to run the exact
205205
sequence recorded in that text file::
206206

207-
./python -W error -E -bb -m test -uall -rwW --fromfile mytestsequence.txt
207+
./python -E -m test --slow-ci --timeout=2400 -j2 -u-cpu,-urlfetch,-network --junit-xml test-results.xml -j4 --fromfile mytestsequence.txt
208208

209209
In the example sequence above, if ``test_zipimport`` had failed, you would
210210
first test the following sequence:

0 commit comments

Comments
 (0)