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::