Skip to content

Commit d2f9344

Browse files
authored
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 #50
1 parent 0ea6d59 commit d2f9344

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on:
44
schedule:
55
- cron: '0 0 * * 1' # every Monday
66

7-
name: Run Tox tests
7+
name: Run tox tests
88

99
jobs:
1010
tox_test:
11-
name: Tox test
11+
name: tox test
1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Run Tox tests
14+
- name: Run tox tests
1515
id: test
1616
uses: fedora-python/tox-github-action@master
1717
with:

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ the ``pytest`` command is present and uses the correct version of Python.
185185
Don't mix current-env and regular tox runs
186186
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
187187

188-
Tox caches the virtualenvs it creates, and doesn't distinguish between
188+
tox caches the virtualenvs it creates, and doesn't distinguish between
189189
regular virtualenvs and ``--current-env``.
190190
Don't mix ``tox --current-env``, ``tox --print-deps-to`` or ``tox --print-extras-to``
191191
runs and regular ``tox`` runs (without the flags provided by this plugin).
@@ -207,7 +207,7 @@ use the ``TOX_TESTENV_PASSENV`` environment variable.
207207
Read `the documentation for passing environment variables to tox
208208
<https://tox.readthedocs.io/en/latest/config.html#conf-passenv>`_.
209209

210-
Tox provisioning
210+
tox provisioning
211211
~~~~~~~~~~~~~~~~
212212

213213
The tested projects can specify the

tests/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def print_extras_stdout_arg(request):
5656

5757
@contextlib.contextmanager
5858
def modify_config(tox_ini_path):
59-
"""Context manager that allows modifying the given Tox config file
59+
"""Context manager that allows modifying the given tox config file
6060
6161
A statement like::
6262

0 commit comments

Comments
 (0)