diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-07-20 15:08:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-20 15:08:51 (GMT) |
commit | 645e503ba58086c7f51eda4d025743f2afc05a2a (patch) | |
tree | ad00a2dbaf18e4c535553c678e617ff2fb30f86b /Misc | |
parent | 71d9b52aa3b3f1e390c56da8ea2d8685f23946c4 (diff) | |
download | cpython-645e503ba58086c7f51eda4d025743f2afc05a2a.zip cpython-645e503ba58086c7f51eda4d025743f2afc05a2a.tar.gz cpython-645e503ba58086c7f51eda4d025743f2afc05a2a.tar.bz2 |
bpo-30822: Exclude tzdata from regrtest --all (#2775) (#2781)
When running the test suite using --use=all / -u all, exclude tzdata
since it makes test_datetime too slow (15-20 min on some buildbots)
which then times out on some buildbots.
-u tzdata must now be enabled explicitly, -u tzdata or -u all,tzdata,
to run all test_datetime tests.
Fix also regrtest command line parser to allow passing -u
extralargefile to run test_zipfile64.
Travis CI: remove -tzdata. Replace -u all,-tzdata,-cpu with -u all,-cpu since tzdata is now excluded from -u all.
(cherry picked from commit 5b392bbaeb9d9b1db961ecfc7315d8c8662c27f6)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2017-07-20-14-29-54.bpo-30822.X0wREo.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2017-07-20-14-29-54.bpo-30822.X0wREo.rst b/Misc/NEWS.d/next/Tests/2017-07-20-14-29-54.bpo-30822.X0wREo.rst new file mode 100644 index 0000000..53557f6 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2017-07-20-14-29-54.bpo-30822.X0wREo.rst @@ -0,0 +1,5 @@ +regrtest: Exclude tzdata from regrtest --all. When running the test suite +using --use=all / -u all, exclude tzdata since it makes test_datetime too +slow (15-20 min on some buildbots) which then times out on some buildbots. +Fix also regrtest command line parser to allow passing -u extralargefile to +run test_zipfile64. |