From d2f9344898e62bb5e442f94acc3bb3d9b4dad6cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Gmach?= Date: Thu, 12 May 2022 09:54:55 +0200 Subject: [PATCH] tox never gets capitalized tox documentation is a good source for how to write it: https://tox.wiki/en/latest/ https://tox.wiki/en/rewrite/ See also https://twitter.com/jugmac00/status/1524452912684011521 Merges https://github.com/fedora-python/tox-current-env/pull/50 --- .github/workflows/main.yaml | 6 +++--- README.rst | 4 ++-- tests/test_integration.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index dd5ceb9..f228b67 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -4,14 +4,14 @@ on: schedule: - cron: '0 0 * * 1' # every Monday -name: Run Tox tests +name: Run tox tests jobs: tox_test: - name: Tox test + name: tox test steps: - uses: actions/checkout@v2 - - name: Run Tox tests + - name: Run tox tests id: test uses: fedora-python/tox-github-action@master with: diff --git a/README.rst b/README.rst index a9c1180..2ccec46 100644 --- a/README.rst +++ b/README.rst @@ -185,7 +185,7 @@ the ``pytest`` command is present and uses the correct version of Python. Don't mix current-env and regular tox runs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Tox caches the virtualenvs it creates, and doesn't distinguish between +tox caches the virtualenvs it creates, and doesn't distinguish between regular virtualenvs and ``--current-env``. Don't mix ``tox --current-env``, ``tox --print-deps-to`` or ``tox --print-extras-to`` runs and regular ``tox`` runs (without the flags provided by this plugin). @@ -207,7 +207,7 @@ use the ``TOX_TESTENV_PASSENV`` environment variable. Read `the documentation for passing environment variables to tox `_. -Tox provisioning +tox provisioning ~~~~~~~~~~~~~~~~ The tested projects can specify the diff --git a/tests/test_integration.py b/tests/test_integration.py index 6be2adb..09abd46 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -56,7 +56,7 @@ def print_extras_stdout_arg(request): @contextlib.contextmanager def modify_config(tox_ini_path): - """Context manager that allows modifying the given Tox config file + """Context manager that allows modifying the given tox config file A statement like::