Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tox.rst: update passenv examples for tox3 and tox4 #371

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/usage/tox.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For example, on TravisCI::
envlist = py34,py35,py36,py37,py38

[testenv]
passenv = TRAVIS TRAVIS_*
passenv = TRAVIS , TRAVIS_*
deps =
coveralls
commands =
Expand All @@ -22,7 +22,7 @@ AppVeyor
--------
::

passenv = APPVEYOR APPVEYOR_*
passenv = APPVEYOR , APPVEYOR_*

All variables:

Expand All @@ -35,7 +35,7 @@ BuildKite
---------
::

passenv = BUILDKITE BUILDKITE_*
passenv = BUILDKITE , BUILDKITE_*

All variables:

Expand All @@ -47,7 +47,7 @@ CircleCI
--------
::

passenv = CIRCLECI CIRCLE_* CI_PULL_REQUEST
passenv = CIRCLECI , CIRCLE_* , CI_PULL_REQUEST

All variables:

Expand Down Expand Up @@ -78,7 +78,7 @@ Jenkins
-------
::

passenv = JENKINS_HOME BUILD_NUMBER GIT_BRANCH CI_PULL_REQUEST
passenv = JENKINS_HOME , BUILD_NUMBER , GIT_BRANCH , CI_PULL_REQUEST

All variables:

Expand All @@ -92,7 +92,7 @@ TravisCI
--------
::

passenv = TRAVIS TRAVIS_*
passenv = TRAVIS , TRAVIS_*

All variables:

Expand All @@ -110,7 +110,7 @@ Classic

::

passenv = SEMAPHORE SEMAPHORE_EXECUTABLE_UUID SEMAPHORE_JOB_UUID SEMAPHORE_BRANCH_ID BRANCH_NAME
passenv = SEMAPHORE , SEMAPHORE_EXECUTABLE_UUID , SEMAPHORE_JOB_UUID , SEMAPHORE_BRANCH_ID , BRANCH_NAME

All variables:

Expand All @@ -125,7 +125,7 @@ All variables:

::

passenv = SEMAPHORE SEMAPHORE_WORKFLOW_ID SEMAPHORE_JOB_ID SEMAPHORE_GIT_PR_NUMBER BRANCH_NAME
passenv = SEMAPHORE , SEMAPHORE_WORKFLOW_ID , SEMAPHORE_JOB_ID , SEMAPHORE_GIT_PR_NUMBER , BRANCH_NAME

All variables:

Expand Down