Skip to main content

Library pytest-spec2md is a pytest plugin to create a markdown specification while running pytest.

Project description

pytest-spec2md

This project is an add-on to pytest. It generates a markdown file as specification, while running the tests.

This project is inspired by pytest-spec.

Getting started

Install the module using pip.

pip install pytest-spec2md

Then you can activate the module using --spec Parameter when calling pytest. You find the generated markdown file under documentation/spec.md.

Configuration

You can change the target directory using the parameter spec_target_file.

[pytest]
spec_target_file = path/to/target/doc/file

Using markers

The plugin provides the marker spec_reference. This marker can be used to connect a test_case with the testing object. The name of testing object will than be added to the documentation. If an optional documentation is provided, this will also be displayed.

The marker can be used at every layer of testing object, so you can also use it at a class.

Example

import pytest


def function_to_ref():
    """ Simple doc comment
    with two lines
    """
    pass


@pytest.mark.spec_reference(function_to_ref.__name__, function_to_ref.__doc__)
def test_use_a_reference_in_doc():
    assert True

Examples

Examples for the usage can be found here: UseCases on GitHub

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

pytest-spec2md-0.2.1.tar.gz (13.7 kB view hashes)

Uploaded Source

Built Distribution

pytest_spec2md-0.2.1-py3-none-any.whl (19.0 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