Skip to content

Commit d79ef91

Browse files
committed
Fix typos
1 parent 290b322 commit d79ef91

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pytest-xdist 2.5.0 (2021-12-10)
44
Deprecations and Removals
55
-------------------------
66

7-
- `#468 <https://github.com/pytest-dev/pytest-xdist/issues/468>`_: The ``--boxed`` commmand line argument is deprecated. Install pytest-forked and use ``--forked`` instead. pytest-xdist 3.0.0 will remove the ``--boxed`` argument and pytest-forked dependency.
7+
- `#468 <https://github.com/pytest-dev/pytest-xdist/issues/468>`_: The ``--boxed`` command line argument is deprecated. Install pytest-forked and use ``--forked`` instead. pytest-xdist 3.0.0 will remove the ``--boxed`` argument and pytest-forked dependency.
88

99

1010
Features

src/xdist/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def pytest_configure(config):
198198
tr.showfspath = False
199199
if config.getoption("boxed"):
200200
warning = DeprecationWarning(
201-
"The --boxed commmand line argument is deprecated. "
201+
"The --boxed command line argument is deprecated. "
202202
"Install pytest-forked and use --forked instead. "
203203
"pytest-xdist 3.0.0 will remove the --boxed argument and pytest-forked dependency."
204204
)

src/xdist/scheduler/loadscope.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,12 +361,12 @@ def schedule(self):
361361
extra_nodes = len(self.nodes) - len(self.workqueue)
362362

363363
if extra_nodes > 0:
364-
self.log("Shuting down {} nodes".format(extra_nodes))
364+
self.log("Shutting down {} nodes".format(extra_nodes))
365365

366366
for _ in range(extra_nodes):
367367
unused_node, assigned = self.assigned_work.popitem(last=True)
368368

369-
self.log("Shuting down unused node {}".format(unused_node))
369+
self.log("Shutting down unused node {}".format(unused_node))
370370
unused_node.shutdown()
371371

372372
# Assign initial workload

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ commands = pre-commit run --all-files --show-diff-on-failure
3939

4040
[testenv:release]
4141
changedir=
42-
decription = do a release, required posarg of the version number
42+
description = do a release, required posarg of the version number
4343
basepython = python3.7
4444
skipsdist = True
4545
usedevelop = True

0 commit comments

Comments
 (0)