Skip to content

Commit

Permalink
Fix various spelling mistakes across the tree (#1408)
Browse files Browse the repository at this point in the history
As identified by Debian's lintian:
 - comand -> command
 - suceeds -> succeeds
 - intepreter -> interpreter
 - allow(s) to -> allow(s) you/one to
  • Loading branch information
paravoid authored and gaborbernat committed Aug 30, 2019
1 parent 0d0e7dd commit f39983c
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
18 changes: 9 additions & 9 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ Features
^^^^^^^^

- add ``commands_pre`` and ``commands_post`` that run before and after running
the ``commands`` (setup runs always, commands only if setup suceeds, teardown always - all
the ``commands`` (setup runs always, commands only if setup succeeds, teardown always - all
run until the first failing command) - by :user:`gaborbernat` (`#167 <https://github.com/tox-dev/tox/issues/167>`_)
- ``pyproject.toml`` config support initially by just inline the tox.ini under ``tool.tox.legacy_tox_ini`` key; config source priority order is ``pyproject.toml``, ``tox.ini`` and then ``setup.cfg`` - by :user:`gaborbernat` (`#814 <https://github.com/tox-dev/tox/issues/814>`_)
- use the os environment variable ``TOX_SKIP_ENV`` to filter out tox environment names from the run list (set by ``envlist``) - by :user:`gaborbernat` (`#824 <https://github.com/tox-dev/tox/issues/824>`_)
Expand Down Expand Up @@ -543,7 +543,7 @@ Features
- Switch pip invocations to use the module ``-m pip`` instead of direct invocation. This could help
avoid some of the shebang limitations. - by :user:`gaborbernat` (`#935 <https://github.com/tox-dev/tox/issues/935>`_)
- Ability to specify package requirements for the tox run via the ``tox.ini`` (``tox`` section under key ``requires`` - PEP-508 style): can be used to specify both plugin requirements or build dependencies. - by :user:`gaborbernat` (`#783 <https://github.com/tox-dev/tox/issues/783>`_)
- Allow to run multiple tox instances in parallel by providing the
- Allow one to run multiple tox instances in parallel by providing the
``--parallel--safe-build`` flag. - by :user:`gaborbernat` (`#849 <https://github.com/tox-dev/tox/issues/849>`_)


Expand Down Expand Up @@ -616,7 +616,7 @@ Features
^^^^^^^^

- Add support for multiple PyPy versions using default factors. This allows you
to use, for example, ``pypy27`` knowing that the correct intepreter will be
to use, for example, ``pypy27`` knowing that the correct interpreter will be
used by default - by :user:`stephenfin` (`#19 <https://github.com/tox-dev/tox/issues/19>`_)
- Add support to explicitly invoke interpreter directives for environments with
long path lengths. In the event that ``tox`` cannot invoke scripts with a
Expand Down Expand Up @@ -1106,7 +1106,7 @@ v2.1.0 (2015-06-19)
hackily implemented (if people want home-directory isolation we should
figure out a better way to do it, possibly through a plugin)

- fix `#259 <https://github.com/tox-dev/tox/issues/259>`_: passenv is now a line-list which allows to intersperse
- fix `#259 <https://github.com/tox-dev/tox/issues/259>`_: passenv is now a line-list which allows interspersing
comments. Thanks stefano-m.

- allow envlist to be a multi-line list, to intersperse comments
Expand Down Expand Up @@ -1148,7 +1148,7 @@ v2.0.0 (2015-05-12)
their defaults.

- (new) introduce a way to specify on which platform a testenvironment is to
execute: the new per-venv "platform" setting allows to specify
execute: the new per-venv "platform" setting allows one to specify
a regular expression which is matched against sys.platform.
If platform is set and doesn't match the platform spec in the test
environment the test environment is ignored, no setup or tests are attempted.
Expand All @@ -1173,7 +1173,7 @@ v2.0.0 (2015-05-12)

- tox has now somewhat pep8 clean code, thanks to Volodymyr Vitvitski.

- fix `#240 <https://github.com/tox-dev/tox/issues/240>`_: allow to specify empty argument list without it being
- fix `#240 <https://github.com/tox-dev/tox/issues/240>`_: allow one to specify empty argument list without it being
rewritten to ".". Thanks Daniel Hahler.

- introduce experimental (not much documented yet) plugin system
Expand Down Expand Up @@ -1310,7 +1310,7 @@ v1.7.0 (2014-01-29)
support for creating python2.5 based environments anymore
and all internal special-handling has been removed.

- merged PR81: new option --force-dep which allows to
- merged PR81: new option --force-dep which allows one to
override tox.ini specified dependencies in setuptools-style.
For example "--force-dep 'django<1.6'" will make sure
that any environment using "django" as a dependency will
Expand Down Expand Up @@ -1381,7 +1381,7 @@ v1.6.1 (2013-09-04)
to install ssl and/or use PIP_INSECURE=1 through ``setenv``. section.

- fix `#102 <https://github.com/tox-dev/tox/issues/102>`_: change to {toxinidir} when installing dependencies.
this allows to use relative path like in "-rrequirements.txt".
This allows one to use relative path like in "-rrequirements.txt".

v1.6.0 (2013-08-15)
-------------------
Expand Down Expand Up @@ -1537,7 +1537,7 @@ v1.4 (2012-06-13)
v1.3 2011-12-21
---------------

- fix: allow to specify wildcard filesystem paths when
- fix: allow one to specify wildcard filesystem paths when
specifying dependencies such that tox searches for
the highest version

Expand Down
2 changes: 1 addition & 1 deletion docs/drafts/extend-envs-and-packagebuilds.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ one to one relationship from environment to directory

## Proposal

This feature shall allow to specify how plugins can specify new types of package formats and environments to run test
This feature shall allow one to specify how plugins can specify new types of package formats and environments to run test
commands in.

Such plugins would take care of setting up the environment, create packages and run test commands using hooks provided
Expand Down
2 changes: 1 addition & 1 deletion docs/example/general.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Access package artifacts between multiple tox-runs
If you have multiple projects using tox you can make use of
a ``distshare`` directory where ``tox`` will copy in sdist-packages so
that another tox run can find the "latest" dependency. This feature
allows to test a package against an unreleased development version
allows you to test a package against an unreleased development version
or even an uncommitted version on your own machine.

By default, ``{homedir}/.tox/distshare`` will be used for
Expand Down
2 changes: 1 addition & 1 deletion docs/example/jenkins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Using tox with the Jenkins Integration Server
Using Jenkins multi-configuration jobs
-------------------------------------------

The Jenkins_ continuous integration server allows to define "jobs" with
The Jenkins_ continuous integration server allows you to define "jobs" with
"build steps" which can be test invocations. If you :doc:`install <../install>` ``tox`` on your
default Python installation on each Jenkins agent, you can easily create
a Jenkins multi-configuration job that will drive your tox runs from the CI-server side,
Expand Down
2 changes: 1 addition & 1 deletion docs/example/nose.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ and the following ``tox.ini`` content:
[testenv]
deps = nose
# ``{posargs}`` will be substituted with positional arguments from comand line
# ``{posargs}`` will be substituted with positional arguments from command line
commands = nosetests {posargs}
you can invoke ``tox`` in the directory where your ``tox.ini`` resides.
Expand Down
4 changes: 2 additions & 2 deletions docs/example/unittest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ unittest2, discover and tox
Running unittests with 'discover'
------------------------------------------

The discover_ project allows to discover and run unittests
and we can easily integrate it in a ``tox`` run. As an example,
The discover_ project allows you to discover and run unittests
that you can easily integrate it in a ``tox`` run. As an example,
perform a checkout of `Pygments <https://pypi.org/project/Pygments>`_:

.. code-block:: shell
Expand Down

0 comments on commit f39983c

Please sign in to comment.