Skip to main content

Enables pytest to execute your Jupyter Notebook as a test

Project description

pytest-testbook

Build Status See Build Status on AppVeyor

The Question:

What do you call a Jupyter Notebook filled with test cases?

The Answer:

a testbook !

Why invent this plugin?

Because it allows specification, test cases, and automation code to be recorded inside a single Jupyter Notebook. When specification, requirements, test cases, and automation code are written in one place, this place is called a testbook.

How to run the tests?

  • Option 1: Follow the manual steps written in the testbook and perform each test steps manually.
  • Option 2: Trigger the execution of automated test code by running each cell directly in Jupyter Notebook.
  • Option 3: Use pytest to discover tests inside the testbook and run them. This your option when running testbook in CI/CD pipeline.

Features

  • BDD-style specification, requirements, manual test steps, and test automation code.
  • Auto-generated PDF reports to support auditing processes.
  • Plugin managed playwright instance working on its own background thread but can be used inside Jupyter Notebook cells.
  • Trigger automated tests execution in Jupyter.
  • Upload testbook in CI/CD pipepline for auto-execution using pytest

Getting Started

You will need to install playwright to generate pdf test reports. The side-effect is that you get a free playwright instance that you can use in your Testbooks.

pip install pytest-testbook
pip install jupyterlab
playwright install chromium

Usage

Navigate to where your tests folder are located. Then either run:

jupyter lab

to run tests manually in Jupyter. Or you can run:

pytest -sv

instead to let pytest discover your tests, collect them and execute them.

Advanced Usage

The default behaviour of the plugin is to look for Testbook cells that starts with any of these: "### Given", "### And", "### When", "### Then", "### But"

def pytest_addoption(parser):
    # Register a new INI option that accepts a list of strings
    parser.addini(
        name="testbook_step_prefixes",
        help="List of markdown prefixes that indicate a test step in the notebook",
        type="linelist",
        default=["### Given", "### And", "### When", "### Then", "### But"]
    )

You can override this behaviour and change it to your projects needs in you conftest.py, for example:

def pytest_configure(config):
    # Safely attach a custom attribute to the config object
    config.custom_testbook_prefixes = [
        "### TC-SYS-INT-"
    ]

License

Distributed under the terms of the MIT_ license, "pytest-testbook" is free and open source software

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_testbook-1.5.0.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_testbook-1.5.0-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file pytest_testbook-1.5.0.tar.gz.

File metadata

  • Download URL: pytest_testbook-1.5.0.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.1

File hashes

Hashes for pytest_testbook-1.5.0.tar.gz
Algorithm Hash digest
SHA256 7082332f832cfcd41f41bbb1e6a876050828abd82c456085c651c6f1989b5354
MD5 6f51a24f596b8fdec8c2cca204095ac7
BLAKE2b-256 d9c6371a83fe27c5b913a07c68864791c369f0d9c661be0670af2e1a95b3c771

See more details on using hashes here.

File details

Details for the file pytest_testbook-1.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_testbook-1.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2f5701af04e124e6f096a0df6ff59a71f1bd5569e380edac4b288bf75f814306
MD5 896b551e4f6acb6149b639c385467f7d
BLAKE2b-256 061dfd8902d7b643e6b6c3adebe2445ea7e7ce71d8a72cb3e8ae86f6406a45ea

See more details on using hashes here.

Supported by

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