Skip to content

Commit 78f0388

Browse files
authored
Merge pull request #2168 from jwilk/spelling
Fix typos
2 parents 7592c5b + 03a7a2c commit 78f0388

27 files changed

+67
-67
lines changed

CHANGELOG.rst

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ time or change existing behaviors in order to make them less surprising/more use
690690
Thanks `@astraw38`_ for reporting the issue (`#1496`_) and `@tomviner`_
691691
for PR the (`#1524`_).
692692

693-
* Fix win32 path issue when puttinging custom config file with absolute path
693+
* Fix win32 path issue when putting custom config file with absolute path
694694
in ``pytest.main("-c your_absolute_path")``.
695695

696696
* Fix maximum recursion depth detection when raised error class is not aware
@@ -1022,7 +1022,7 @@ time or change existing behaviors in order to make them less surprising/more use
10221022

10231023
- (experimental) adapt more SEMVER style versioning and change meaning of
10241024
master branch in git repo: "master" branch now keeps the bugfixes, changes
1025-
aimed for micro releases. "features" branch will only be be released
1025+
aimed for micro releases. "features" branch will only be released
10261026
with minor or major pytest releases.
10271027

10281028
- Fix issue #766 by removing documentation references to distutils.
@@ -1156,7 +1156,7 @@ time or change existing behaviors in order to make them less surprising/more use
11561156

11571157
- new option ``--import-mode`` to allow to change test module importing
11581158
behaviour to append to sys.path instead of prepending. This better allows
1159-
to run test modules against installated versions of a package even if the
1159+
to run test modules against installed versions of a package even if the
11601160
package under test has the same import root. In this example::
11611161

11621162
testing/__init__.py
@@ -1314,7 +1314,7 @@ time or change existing behaviors in order to make them less surprising/more use
13141314
explanations. Thanks Carl Meyer for the report and test case.
13151315

13161316
- fix issue553: properly handling inspect.getsourcelines failures in
1317-
FixtureLookupError which would lead to to an internal error,
1317+
FixtureLookupError which would lead to an internal error,
13181318
obfuscating the original problem. Thanks talljosh for initial
13191319
diagnose/patch and Bruno Oliveira for final patch.
13201320

@@ -1457,7 +1457,7 @@ time or change existing behaviors in order to make them less surprising/more use
14571457

14581458
- fix conftest related fixture visibility issue: when running with a
14591459
CWD outside of a test package pytest would get fixture discovery wrong.
1460-
Thanks to Wolfgang Schnerring for figuring out a reproducable example.
1460+
Thanks to Wolfgang Schnerring for figuring out a reproducible example.
14611461

14621462
- Introduce pytest_enter_pdb hook (needed e.g. by pytest_timeout to cancel the
14631463
timeout when interactively entering pdb). Thanks Wolfgang Schnerring.
@@ -1656,7 +1656,7 @@ time or change existing behaviors in order to make them less surprising/more use
16561656
- fix issue429: comparing byte strings with non-ascii chars in assert
16571657
expressions now work better. Thanks Floris Bruynooghe.
16581658

1659-
- make capfd/capsys.capture private, its unused and shouldnt be exposed
1659+
- make capfd/capsys.capture private, its unused and shouldn't be exposed
16601660

16611661

16621662
2.5.1 (2013-12-17)
@@ -1713,7 +1713,7 @@ time or change existing behaviors in order to make them less surprising/more use
17131713
to problems for more than >966 non-function scoped parameters).
17141714

17151715
- fix issue290 - there is preliminary support now for parametrizing
1716-
with repeated same values (sometimes useful to to test if calling
1716+
with repeated same values (sometimes useful to test if calling
17171717
a second time works as with the first time).
17181718

17191719
- close issue240 - document precisely how pytest module importing
@@ -1927,7 +1927,7 @@ new features:
19271927

19281928
- fix issue322: tearDownClass is not run if setUpClass failed. Thanks
19291929
Mathieu Agopian for the initial fix. Also make all of pytest/nose
1930-
finalizer mimick the same generic behaviour: if a setupX exists and
1930+
finalizer mimic the same generic behaviour: if a setupX exists and
19311931
fails, don't run teardownX. This internally introduces a new method
19321932
"node.addfinalizer()" helper which can only be called during the setup
19331933
phase of a node.
@@ -2046,11 +2046,11 @@ Bug fixes:
20462046
(thanks Adam Goucher)
20472047

20482048
- Issue 265 - integrate nose setup/teardown with setupstate
2049-
so it doesnt try to teardown if it did not setup
2049+
so it doesn't try to teardown if it did not setup
20502050

2051-
- issue 271 - dont write junitxml on slave nodes
2051+
- issue 271 - don't write junitxml on slave nodes
20522052

2053-
- Issue 274 - dont try to show full doctest example
2053+
- Issue 274 - don't try to show full doctest example
20542054
when doctest does not know the example location
20552055

20562056
- issue 280 - disable assertion rewriting on buggy CPython 2.6.0
@@ -2086,7 +2086,7 @@ Bug fixes:
20862086
- allow to specify prefixes starting with "_" when
20872087
customizing python_functions test discovery. (thanks Graham Horler)
20882088

2089-
- improve PYTEST_DEBUG tracing output by puting
2089+
- improve PYTEST_DEBUG tracing output by putting
20902090
extra data on a new lines with additional indent
20912091

20922092
- ensure OutcomeExceptions like skip/fail have initialized exception attributes
@@ -2135,7 +2135,7 @@ Bug fixes:
21352135
- fix issue209 - reintroduce python2.4 support by depending on newer
21362136
pylib which re-introduced statement-finding for pre-AST interpreters
21372137

2138-
- nose support: only call setup if its a callable, thanks Andrew
2138+
- nose support: only call setup if it's a callable, thanks Andrew
21392139
Taumoefolau
21402140

21412141
- fix issue219 - add py2.4-3.3 classifiers to TROVE list
@@ -2231,7 +2231,7 @@ Bug fixes:
22312231

22322232
- fix issue128: show captured output when capsys/capfd are used
22332233

2234-
- fix issue179: propperly show the dependency chain of factories
2234+
- fix issue179: properly show the dependency chain of factories
22352235

22362236
- pluginmanager.register(...) now raises ValueError if the
22372237
plugin has been already registered or the name is taken
@@ -2272,7 +2272,7 @@ Bug fixes:
22722272

22732273
- don't show deselected reason line if there is none
22742274

2275-
- py.test -vv will show all of assert comparisations instead of truncating
2275+
- py.test -vv will show all of assert comparisons instead of truncating
22762276

22772277
2.2.4 (2012-05-22)
22782278
==================
@@ -2283,7 +2283,7 @@ Bug fixes:
22832283
- fix issue with unittest: now @unittest.expectedFailure markers should
22842284
be processed correctly (you can also use @pytest.mark markers)
22852285
- document integration with the extended distribute/setuptools test commands
2286-
- fix issue 140: propperly get the real functions
2286+
- fix issue 140: properly get the real functions
22872287
of bound classmethods for setup/teardown_class
22882288
- fix issue #141: switch from the deceased paste.pocoo.org to bpaste.net
22892289
- fix issue #143: call unconfigure/sessionfinish always when
@@ -2294,7 +2294,7 @@ Bug fixes:
22942294
2.2.3 (2012-02-05)
22952295
==================
22962296

2297-
- fix uploaded package to only include neccesary files
2297+
- fix uploaded package to only include necessary files
22982298

22992299
2.2.2 (2012-02-05)
23002300
==================
@@ -2435,7 +2435,7 @@ Bug fixes:
24352435
- don't require zlib (and other libs) for genscript plugin without
24362436
--genscript actually being used.
24372437

2438-
- speed up skips (by not doing a full traceback represenation
2438+
- speed up skips (by not doing a full traceback representation
24392439
internally)
24402440

24412441
- fix issue37: avoid invalid characters in junitxml's output
@@ -2483,9 +2483,9 @@ Bug fixes:
24832483
this.
24842484

24852485
- fixed typos in the docs (thanks Victor Garcia, Brianna Laugher) and particular
2486-
thanks to Laura Creighton who also revieved parts of the documentation.
2486+
thanks to Laura Creighton who also reviewed parts of the documentation.
24872487

2488-
- fix slighly wrong output of verbose progress reporting for classes
2488+
- fix slightly wrong output of verbose progress reporting for classes
24892489
(thanks Amaury)
24902490

24912491
- more precise (avoiding of) deprecation warnings for node.Class|Function accesses
@@ -2546,7 +2546,7 @@ Bug fixes:
25462546

25472547
- pytest-2.0 is now its own package and depends on pylib-2.0
25482548
- new ability: python -m pytest / python -m pytest.main ability
2549-
- new python invcation: pytest.main(args, plugins) to load
2549+
- new python invocation: pytest.main(args, plugins) to load
25502550
some custom plugins early.
25512551
- try harder to run unittest test suites in a more compatible manner
25522552
by deferring setup/teardown semantics to the unittest package.
@@ -2785,7 +2785,7 @@ Bug fixes:
27852785
- extend and refine xfail mechanism:
27862786
``@py.test.mark.xfail(run=False)`` do not run the decorated test
27872787
``@py.test.mark.xfail(reason="...")`` prints the reason string in xfail summaries
2788-
specifiying ``--runxfail`` on command line virtually ignores xfail markers
2788+
specifying ``--runxfail`` on command line virtually ignores xfail markers
27892789

27902790
- expose (previously internal) commonly useful methods:
27912791
py.io.get_terminal_with() -> return terminal width
@@ -3010,7 +3010,7 @@ Bug fixes:
30103010

30113011
* add the ability to specify a path for py.lookup to search in
30123012

3013-
* fix a funcarg cached_setup bug probably only occuring
3013+
* fix a funcarg cached_setup bug probably only occurring
30143014
in distributed testing and "module" scope with teardown.
30153015

30163016
* many fixes and changes for making the code base python3 compatible,
@@ -3276,10 +3276,10 @@ serve as a reference for developers.
32763276
* fixed issue with 2.5 type representations in py.test [45483, 45484]
32773277
* made that internal reporting issues displaying is done atomically in py.test
32783278
[45518]
3279-
* made that non-existing files are igored by the py.lookup script [45519]
3279+
* made that non-existing files are ignored by the py.lookup script [45519]
32803280
* improved exception name creation in py.test [45535]
32813281
* made that less threads are used in execnet [merge in 45539]
3282-
* removed lock required for atomical reporting issue displaying in py.test
3282+
* removed lock required for atomic reporting issue displaying in py.test
32833283
[45545]
32843284
* removed globals from execnet [45541, 45547]
32853285
* refactored cleanup mechanics, made that setDaemon is set to 1 to make atexit

doc/en/announce/release-2.0.2.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ Changes between 2.0.1 and 2.0.2
6363
this.
6464

6565
- fixed typos in the docs (thanks Victor Garcia, Brianna Laugher) and particular
66-
thanks to Laura Creighton who also revieved parts of the documentation.
66+
thanks to Laura Creighton who also reviewed parts of the documentation.
6767

68-
- fix slighly wrong output of verbose progress reporting for classes
68+
- fix slightly wrong output of verbose progress reporting for classes
6969
(thanks Amaury)
7070

7171
- more precise (avoiding of) deprecation warnings for node.Class|Function accesses

doc/en/announce/release-2.0.3.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you want to install or upgrade pytest, just type one of::
1313
easy_install -U pytest
1414

1515
There also is a bugfix release 1.6 of pytest-xdist, the plugin
16-
that enables seemless distributed and "looponfail" testing for Python.
16+
that enables seamless distributed and "looponfail" testing for Python.
1717

1818
best,
1919
holger krekel
@@ -33,7 +33,7 @@ Changes between 2.0.2 and 2.0.3
3333
- don't require zlib (and other libs) for genscript plugin without
3434
--genscript actually being used.
3535

36-
- speed up skips (by not doing a full traceback represenation
36+
- speed up skips (by not doing a full traceback representation
3737
internally)
3838

3939
- fix issue37: avoid invalid characters in junitxml's output

doc/en/announce/release-2.2.1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pytest-2.2.1: bug fixes, perfect teardowns
22
===========================================================================
33

44

5-
pytest-2.2.1 is a minor backward-compatible release of the the py.test
5+
pytest-2.2.1 is a minor backward-compatible release of the py.test
66
testing tool. It contains bug fixes and little improvements, including
77
documentation fixes. If you are using the distributed testing
88
pluginmake sure to upgrade it to pytest-xdist-1.8.

doc/en/announce/release-2.2.4.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Changes between 2.2.3 and 2.2.4
2929
- fix issue with unittest: now @unittest.expectedFailure markers should
3030
be processed correctly (you can also use @pytest.mark markers)
3131
- document integration with the extended distribute/setuptools test commands
32-
- fix issue 140: propperly get the real functions
32+
- fix issue 140: properly get the real functions
3333
of bound classmethods for setup/teardown_class
3434
- fix issue #141: switch from the deceased paste.pocoo.org to bpaste.net
3535
- fix issue #143: call unconfigure/sessionfinish always when

doc/en/announce/release-2.3.0.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Changes between 2.2.4 and 2.3.0
8989

9090
- fix issue128: show captured output when capsys/capfd are used
9191

92-
- fix issue179: propperly show the dependency chain of factories
92+
- fix issue179: properly show the dependency chain of factories
9393

9494
- pluginmanager.register(...) now raises ValueError if the
9595
plugin has been already registered or the name is taken
@@ -130,5 +130,5 @@ Changes between 2.2.4 and 2.3.0
130130

131131
- don't show deselected reason line if there is none
132132

133-
- py.test -vv will show all of assert comparisations instead of truncating
133+
- py.test -vv will show all of assert comparisons instead of truncating
134134

doc/en/announce/release-2.3.2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pytest-2.3.2: some fixes and more traceback-printing speed
22
===========================================================================
33

4-
pytest-2.3.2 is a another stabilization release:
4+
pytest-2.3.2 is another stabilization release:
55

66
- issue 205: fixes a regression with conftest detection
77
- issue 208/29: fixes traceback-printing speed in some bad cases

doc/en/announce/release-2.3.3.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
pytest-2.3.3: integration fixes, py24 suport, ``*/**`` shown in traceback
1+
pytest-2.3.3: integration fixes, py24 support, ``*/**`` shown in traceback
22
===========================================================================
33

4-
pytest-2.3.3 is a another stabilization release of the py.test tool
4+
pytest-2.3.3 is another stabilization release of the py.test tool
55
which offers uebersimple assertions, scalable fixture mechanisms
66
and deep customization for testing with Python. Particularly,
77
this release provides:
@@ -46,7 +46,7 @@ Changes between 2.3.2 and 2.3.3
4646
- fix issue209 - reintroduce python2.4 support by depending on newer
4747
pylib which re-introduced statement-finding for pre-AST interpreters
4848

49-
- nose support: only call setup if its a callable, thanks Andrew
49+
- nose support: only call setup if it's a callable, thanks Andrew
5050
Taumoefolau
5151

5252
- fix issue219 - add py2.4-3.3 classifiers to TROVE list

doc/en/announce/release-2.3.5.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ Changes between 2.3.4 and 2.3.5
4444
(thanks Adam Goucher)
4545

4646
- Issue 265 - integrate nose setup/teardown with setupstate
47-
so it doesnt try to teardown if it did not setup
47+
so it doesn't try to teardown if it did not setup
4848

49-
- issue 271 - dont write junitxml on slave nodes
49+
- issue 271 - don't write junitxml on slave nodes
5050

51-
- Issue 274 - dont try to show full doctest example
51+
- Issue 274 - don't try to show full doctest example
5252
when doctest does not know the example location
5353

5454
- issue 280 - disable assertion rewriting on buggy CPython 2.6.0
@@ -84,7 +84,7 @@ Changes between 2.3.4 and 2.3.5
8484
- allow to specify prefixes starting with "_" when
8585
customizing python_functions test discovery. (thanks Graham Horler)
8686

87-
- improve PYTEST_DEBUG tracing output by puting
87+
- improve PYTEST_DEBUG tracing output by putting
8888
extra data on a new lines with additional indent
8989

9090
- ensure OutcomeExceptions like skip/fail have initialized exception attributes

doc/en/announce/release-2.4.0.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ a full list of details. A few feature highlights:
3636
- reporting: color the last line red or green depending if
3737
failures/errors occurred or everything passed.
3838

39-
The documentation has been updated to accomodate the changes,
39+
The documentation has been updated to accommodate the changes,
4040
see `http://pytest.org <http://pytest.org>`_
4141

4242
To install or upgrade pytest::
@@ -118,7 +118,7 @@ new features:
118118

119119
- fix issue322: tearDownClass is not run if setUpClass failed. Thanks
120120
Mathieu Agopian for the initial fix. Also make all of pytest/nose
121-
finalizer mimick the same generic behaviour: if a setupX exists and
121+
finalizer mimic the same generic behaviour: if a setupX exists and
122122
fails, don't run teardownX. This internally introduces a new method
123123
"node.addfinalizer()" helper which can only be called during the setup
124124
phase of a node.

doc/en/announce/release-2.5.0.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ holger krekel
7070
to problems for more than >966 non-function scoped parameters).
7171

7272
- fix issue290 - there is preliminary support now for parametrizing
73-
with repeated same values (sometimes useful to to test if calling
73+
with repeated same values (sometimes useful to test if calling
7474
a second time works as with the first time).
7575

7676
- close issue240 - document precisely how pytest module importing
@@ -149,7 +149,7 @@ holger krekel
149149

150150
would not work correctly because pytest assumes @pytest.mark.some
151151
gets a function to be decorated already. We now at least detect if this
152-
arg is an lambda and thus the example will work. Thanks Alex Gaynor
152+
arg is a lambda and thus the example will work. Thanks Alex Gaynor
153153
for bringing it up.
154154

155155
- xfail a test on pypy that checks wrong encoding/ascii (pypy does

doc/en/announce/release-2.5.2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ holger krekel
6060
- fix issue429: comparing byte strings with non-ascii chars in assert
6161
expressions now work better. Thanks Floris Bruynooghe.
6262

63-
- make capfd/capsys.capture private, its unused and shouldnt be exposed
63+
- make capfd/capsys.capture private, its unused and shouldn't be exposed
6464

doc/en/announce/release-2.6.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Changes 2.6.3
4242

4343
- fix conftest related fixture visibility issue: when running with a
4444
CWD outside of a test package pytest would get fixture discovery wrong.
45-
Thanks to Wolfgang Schnerring for figuring out a reproducable example.
45+
Thanks to Wolfgang Schnerring for figuring out a reproducible example.
4646

4747
- Introduce pytest_enter_pdb hook (needed e.g. by pytest_timeout to cancel the
4848
timeout when interactively entering pdb). Thanks Wolfgang Schnerring.

doc/en/announce/release-2.7.1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The py.test Development Team
3232
explanations. Thanks Carl Meyer for the report and test case.
3333

3434
- fix issue553: properly handling inspect.getsourcelines failures in
35-
FixtureLookupError which would lead to to an internal error,
35+
FixtureLookupError which would lead to an internal error,
3636
obfuscating the original problem. Thanks talljosh for initial
3737
diagnose/patch and Bruno Oliveira for final patch.
3838

doc/en/announce/release-2.9.2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The py.test Development Team
4646
Thanks `@astraw38`_ for reporting the issue (`#1496`_) and `@tomviner`_
4747
for PR the (`#1524`_).
4848

49-
* Fix win32 path issue when puttinging custom config file with absolute path
49+
* Fix win32 path issue when putting custom config file with absolute path
5050
in ``pytest.main("-c your_absolute_path")``.
5151

5252
* Fix maximum recursion depth detection when raised error class is not aware

doc/en/cache.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ by adding the ``--cache-clear`` option like this::
246246

247247
pytest --cache-clear
248248

249-
This is recommended for invocations from Continous Integration
249+
This is recommended for invocations from Continuous Integration
250250
servers where isolation and correctness is more important
251251
than speed.
252252

0 commit comments

Comments
 (0)