Skip to main content

A simple module to test your documentation examples with pytest

Project description

markdown-pytest

A simple module to test your documentation examples with pytest.

Markdown:

    ```python
    assert True
    ```

Will be shown as:

assert True

You can use the special value __name__ to check to separate the run example and the test code.

Markdown:

    ```python
    if __name__ == '__main__':
        exit(0)
    if __name__ == 'markdown-pytest':
        assert True
    ```

Will be shown as:

if __name__ == '__main__':
    exit(0)
if __name__ == 'markdown-pytest':
    assert True

Code after the # noqa comment will not be executed.

    ```python
    # noqa
    from universe import antigravity, WrongPlanet

    try:
        antigravity()
    except WrongPlanet:
        print("You are on the wrong planet.")
        exit(1)
    ```

Will be shown as:

# noqa
from universe import antigravity, WrongPlanet

try:
    antigravity()
except WrongPlanet:
    print("You are on the wrong planet.")
    exit(1)

This README.md file might be tested like this:

$ poetry run pytest -sxv README.md                                                                                                                                    17:20:29 master
=============== test session starts ===============
plugins: md-0.1.0
collected 3 items

README.md::line[16-17] PASSED
README.md::line[36-40] PASSED
README.md::line[60-68] PASSED

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

markdown_pytest-0.1.2.tar.gz (7.1 kB view hashes)

Uploaded Source

Built Distribution

markdown_pytest-0.1.2-py3-none-any.whl (7.3 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