@@ -11,13 +11,10 @@ pytest-doctestplus
11
11
:alt: CI Status
12
12
13
13
This package contains a plugin for the `pytest `_ framework that provides
14
- advanced doctest support and enables the testing of `reStructuredText `_
15
- (".rst") files. It was originally part of the `astropy `_ core package, but has
16
- been moved to a separate package in order to be of more general use.
14
+ advanced doctest support and enables the testing of various text files, such
15
+ as reStructuredText (".rst"), markdown (".md"), and TeX (".tex").
17
16
18
17
.. _pytest : https://pytest.org/en/latest/
19
- .. _astropy : https://astropy.org/
20
- .. _reStructuredText : https://en.wikipedia.org/wiki/ReStructuredText
21
18
22
19
23
20
Motivation
@@ -44,7 +41,6 @@ providing the following features:
44
41
* optional inclusion of ``*.rst `` files for doctests (see `Setup and Configuration `_)
45
42
* optional inclusion of doctests in docstrings of Numpy ufuncs
46
43
47
- .. _pytest-remotedata : https://github.com/astropy/pytest-remotedata
48
44
49
45
Installation
50
46
------------
@@ -331,7 +327,7 @@ marked:
331
327
.. code-block :: python
332
328
333
329
>> > from urlib.request import urlopen
334
- >> > url = urlopen(' http://astropy.org' ) # doctest: +REMOTE_DATA
330
+ >> > url = urlopen(' http://astropy.org' ) # doctest: +REMOTE_DATA
335
331
336
332
The ``+REMOTE_DATA `` directive indicates that the marked statement should only
337
333
be executed if the ``--remote-data `` option is given. By default, all
0 commit comments