Skip to content

Commit 4de3d59

Browse files
committed
Merge pull request #1333 from lesteve/fix-practise-typo
Fix practise -> practice typo in documentation
2 parents 11a7bca + 99072ea commit 4de3d59

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Features
6060
- Detailed info on failing `assert statements <http://pytest.org/latest/assert.html>`_ (no need to remember ``self.assert*`` names);
6161

6262
- `Auto-discovery
63-
<http://pytest.org/latest/goodpractises.html#python-test-discovery>`_
63+
<http://pytest.org/latest/goodpractices.html#python-test-discovery>`_
6464
of test modules and functions;
6565

6666
- `Modular fixtures <http://pytest.org/latest/fixture.html>`_ for

doc/en/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Where to go next
193193
Here are a few suggestions where to go next:
194194

195195
* :ref:`cmdline` for command line invocation examples
196-
* :ref:`good practises <goodpractises>` for virtualenv, test layout, genscript support
196+
* :ref:`good practices <goodpractices>` for virtualenv, test layout, genscript support
197197
* :ref:`fixtures` for providing a functional baseline to your tests
198198
* :ref:`apiref` for documentation and examples on using ``pytest``
199199
* :ref:`plugins` managing and writing plugins

doc/en/goodpractises.rst renamed to doc/en/goodpractices.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. highlightlang:: python
2-
.. _`goodpractises`:
2+
.. _`goodpractices`:
33

44
Good Integration Practices
55
=================================================

doc/en/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ pytest: helps you write better programs
4040
- multi-paradigm: pytest can run ``nose``, ``unittest`` and
4141
``doctest`` style test suites, including running testcases made for
4242
Django and trial
43-
- supports :ref:`good integration practises <goodpractises>`
43+
- supports :ref:`good integration practices <goodpractices>`
4444
- supports extended :ref:`xUnit style setup <xunitsetup>`
4545
- supports domain-specific :ref:`non-python tests`
4646
- supports generating `test coverage reports

doc/en/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Getting started basics
77

88
getting-started
99
usage
10-
goodpractises
10+
goodpractices
1111
projects
1212
faq
1313

doc/en/writing_plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Here is how you might run it::
9595
python package directory (i.e. one containing an ``__init__.py``) then
9696
"import conftest" can be ambiguous because there might be other
9797
``conftest.py`` files as well on your PYTHONPATH or ``sys.path``.
98-
It is thus good practise for projects to either put ``conftest.py``
98+
It is thus good practice for projects to either put ``conftest.py``
9999
under a package scope or to never import anything from a
100100
conftest.py file.
101101

0 commit comments

Comments
 (0)