@@ -20,12 +20,6 @@ Many projects are developed on Unix by default, and providing Windows support
2020can be a challenge, because setting up a suitable Windows test environment is
2121non-trivial, and may require buying software licenses.
2222
23- The Appveyor service is a continuous integration service, much like the
24- better-known `Travis `_ service that is commonly used for testing by projects
25- hosted on `GitHub `_. However, unlike Travis, the build workers on Appveyor are
26- Windows hosts and have the necessary compilers installed to build Python
27- extensions.
28-
2923Windows users typically do not have access to a C compiler, and therefore are
3024reliant on projects that use C extensions distributing binary wheels on PyPI in
3125order for the distribution to be installable via ``python -m pip install <dist> ``. By
@@ -46,8 +40,7 @@ your project is hosted on one of those two services, setting up Appveyor
4640integration is straightforward.
4741
4842Once you have set up your Appveyor account and added your project, Appveyor will
49- automatically build your project each time a commit occurs. This behaviour will
50- be familiar to users of Travis.
43+ automatically build your project each time a commit occurs.
5144
5245Adding Appveyor support to your project
5346=======================================
@@ -179,7 +172,7 @@ other CI systems).
179172
1801732. When used interactively, ``tox `` allows you to run your tests against multiple
181174 environments (often, this means multiple Python versions). This feature is not as
182- useful in a CI environment like Travis or Appveyor, where all tests are run in
175+ useful in a CI environment like Appveyor, where all tests are run in
183176 isolated environments for each configuration. As a result, projects often supply
184177 an argument ``-e ENVNAME `` to ``tox `` to specify which environment to use (there
185178 are default environments for most versions of Python).
@@ -237,6 +230,6 @@ For reference, the SDK setup support script is listed here:
237230 :linenos:
238231
239232.. _Appveyor : https://www.appveyor.com/
240- .. _Travis : https://travis-ci.com/
241233.. _GitHub : https://github.com
234+ .. _GitHub Actions : https://docs.github.com/en/actions
242235.. _Bitbucket : https://bitbucket.org/
0 commit comments