@@ -360,20 +360,22 @@ will run on all supported platforms and versions of Python.
360
360
361
361
.. _tox : https://tox.readthedocs.io/
362
362
363
- * If you know your changes do not need to be tested (this is very rare!), all
364
- CIs can be skipped for a given commit by including ``[ci skip] `` or
365
- ``[skip ci] `` in the commit message. If you know only a subset of CIs need
366
- to be run (e.g., if you are changing some block of plain reStructuredText and
367
- want only CircleCI to run to render the result), individual CIs can be
368
- skipped on individual commits as well by using the following substrings
369
- in commit messages:
370
-
371
- - GitHub Actions: ``[skip actions] ``
372
- - AppVeyor: ``[skip appveyor] `` (must be in the first line of the commit)
373
- - Azure Pipelines: ``[skip azp] ``
374
- - CircleCI: ``[skip circle] ``
375
-
376
- If you only want to run documentation CI you can pass ``[ci doc] ``.
363
+ * If you know only a subset of CIs need to be run, this can be controlled on
364
+ individual commits by including the following substrings in commit messages:
365
+
366
+ - If you only changed documentation, use ``[ci doc] `` to restrict the CI to
367
+ documentation checks.
368
+ - If you didn't change any documentation, use ``[skip circle] `` to skip the
369
+ documentation build check.
370
+ - Unit tests can be turned off for individual platforms with
371
+
372
+ - GitHub Actions: ``[skip actions] ``
373
+ - AppVeyor: ``[skip appveyor] `` (must be in the first line of the commit)
374
+ - Azure Pipelines: ``[skip azp] ``
375
+
376
+ - If you know your changes do not need to be tested at all (this is very
377
+ rare!), all CIs can be skipped by including ``[ci skip] `` or ``[skip ci] ``.
378
+
377
379
378
380
.. _pr-squashing :
379
381
0 commit comments