diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2021-12-31 00:16:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-31 00:16:27 (GMT) |
commit | 2cf7d02b99ce8cebd26d330aa8aac2ee369d4600 (patch) | |
tree | 14c068a6188d4f20fd6e6152aa859155387eba08 /Doc/library/unittest.rst | |
parent | 82c2b54a35f85d87639201d1431ae6584b079e13 (diff) | |
download | cpython-2cf7d02b99ce8cebd26d330aa8aac2ee369d4600.zip cpython-2cf7d02b99ce8cebd26d330aa8aac2ee369d4600.tar.gz cpython-2cf7d02b99ce8cebd26d330aa8aac2ee369d4600.tar.bz2 |
bpo-46178: Remove/rename redundant Travis CI code (#30309)
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index bf7a1e8..22723f4 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -72,8 +72,9 @@ test runner a GUI tool for test discovery and execution. This is intended largely for ease of use for those new to unit testing. For production environments it is recommended that tests be driven by a continuous integration system such as - `Buildbot <https://buildbot.net/>`_, `Jenkins <https://jenkins.io/>`_ - or `Travis-CI <https://travis-ci.com>`_, or `AppVeyor <https://www.appveyor.com/>`_. + `Buildbot <https://buildbot.net/>`_, `Jenkins <https://jenkins.io/>`_, + `GitHub Actions <https://github.com/features/actions>`_, or + `AppVeyor <https://www.appveyor.com/>`_. .. _unittest-minimal-example: |