Skip to main content

Parse, test, and assert RST code-blocks

Project description

build python3.8 pypi codecov.io mit black

Parse and test README.rst Python code-blocks

Installation

$ pip install readmetester

Code blocks need to begin with

.. code-block:: python

followed by a blank line

End a code block with another blank line

Usage

readmetester [-h] file

If a README.rst file is present in the current working directory it will be used if no arguments are provided

$ readmetester README.rst

Documenting

Documented code needs to be indented

Python code begins with ">>> "

Expected output can be single quoted or unquoted (no double quotes)

.. code-block:: python

    >>> print("Hello, world!")
    'Hello, world!'

Continuation lines begin with "... "

.. code-block:: python

    >>> n = [
    ...     "zero",
    ...     "one",
    ...     "two",
    ... ]
    >>> for c, i in enumerate(n):
    ...     print(c, i)
    0 zero
    1 one
    2 two

Styles can be configured in a pyproject.toml file

[tool.readmetester]
style = "monokai"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

readmetester-2.1.0.tar.gz (9.5 kB view hashes)

Uploaded Source

Built Distribution

readmetester-2.1.0-py3-none-any.whl (9.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page