summaryrefslogtreecommitdiff
path: root/doc/source/dev
diff options
context:
space:
mode:
authorPamphile Roy <roy.pamphile@gmail.com>2022-08-17 19:59:33 +0200
committerPamphile Roy <roy.pamphile@gmail.com>2022-08-17 20:01:58 +0200
commitb3f01f14506322a4a0984042e5957efc3e1e119c (patch)
tree836482efde6e9e920922ea14e3b2a0a6ad2ef0e2 /doc/source/dev
parentf33dd34885fafbe2c5f466ccf05953bfdc73f56d (diff)
downloadnumpy-b3f01f14506322a4a0984042e5957efc3e1e119c.tar.gz
DOC: update skip section and fix formatting.
[skip ci]
Diffstat (limited to 'doc/source/dev')
-rw-r--r--doc/source/dev/development_workflow.rst19
1 files changed, 8 insertions, 11 deletions
diff --git a/doc/source/dev/development_workflow.rst b/doc/source/dev/development_workflow.rst
index a7c915b42..b49a96d7a 100644
--- a/doc/source/dev/development_workflow.rst
+++ b/doc/source/dev/development_workflow.rst
@@ -197,17 +197,14 @@ platforms to building the docs. In some cases you already know that CI isn't
needed (or not all of it), for example if you work on CI config files, text in
the README, or other files that aren't involved in regular build, test or docs
sequences. In such cases you may explicitly skip CI by including one of these
-fragments in your commit message::
-
- ``[ci skip]``: skip as much CI as possible (not all jobs can be skipped)
- ``[skip github]``: skip GitHub Actions "build numpy and run tests" jobs
- ``[skip travis]``: skip TravisCI jobs
- ``[skip azurepipelines]``: skip Azure jobs
-
-*Note*: unfortunately not all CI systems implement this feature well, or at all.
-CircleCI supports ``ci skip`` but has no command to skip only CircleCI.
-Azure chooses to still run jobs with skip commands on PRs, the jobs only get
-skipped on merging to master.
+fragments in your commit message:
+
+* ``[skip ci]``: skip all CI
+* ``[skip github]``: skip GitHub Actions "build numpy and run tests" jobs
+* ``[skip actions]``: skip all GitHub Actions
+* ``[skip travis]``: skip TravisCI jobs
+* ``[skip azp]``: skip Azure jobs
+* ``[skip circle]``: skip CircleCI jobs
Test building wheels
~~~~~~~~~~~~~~~~~~~~