[Python-checkins] [python/cpython] 453a68: bpo-30283: Backport regrtest features from master ...

GitHub noreply at github.com
Tue May 9 11:06:36 EDT 2017


  Branch: refs/heads/2.7
  Home:   https://github.com/python/cpython
  Commit: 453a6857023a0a2c714772cda8717ecf03de64f5
      https://github.com/python/cpython/commit/453a6857023a0a2c714772cda8717ecf03de64f5
  Author: Victor Stinner <victor.stinner at gmail.com>
  Date:   2017-05-09 (Tue, 09 May 2017)

  Changed paths:
    M .github/appveyor.yml
    M Lib/test/regrtest.py
    M Lib/test/test_regrtest.py
    M Makefile.pre.in

  Log Message:
  -----------
  bpo-30283: Backport regrtest features from master to 2.7 (#1516)

* regrtest: add --slowest alias to --slow

* make buildbottest: add --slowest option

* regrtest: add "- " prefix to --slowest output

* regrtest: Fix an outdated comment

* regrtest: replace PermissionError

Replace PermissionError with OSError and check on exc.errno.
PermissionError was added to Python 3.3.

* regrtest: add -3 -tt options to run Python scripts

* regrtest: backport --list-tests option

* regrtest: backport "Tests result: xxx" summary

* regrtest: backport total duration

* regrtest: add timestamp to the progress

* regrtest: describe previous test state

* Add the state of the test: passed, failed, etc.
* If a test took longer than 30 seconds, log its execution time

* regrtest: -jN logs running workers

* regrtest: mention if tests are run in parallel

* regrtest: parallel mode is more verbose during wait

Display running tests every 30 seconds if no test completed in the
meanwhile.

* test_regrtest: fix typo in SubprocessRun




More information about the Python-checkins mailing list