Skip to main content

Get a hierarchical dict of session.items

Project description

PyPI version Python versions License Monthly Downloads Wheel Maintained See Build Status on GitHub Actions

Get a hierarchical dict of session.items Used code from pytest-collect-formatter


This pytest plugin was generated with Cookiecutter along with @hackebrot’s cookiecutter-pytest-plugin template.

Features

  • Builds a hierarchical dict mirroring the pytest collection tree (directory → module → class → test function) from session.items

  • Provides two live dicts:

    • collect_dict — pure structure populated after collection, with optional marker annotations; every non-leaf node carries a @tests count of collected tests beneath it

    • test_dict — populated incrementally during the run; records outcomes, durations, markers, and aggregated @counts

  • Every parent node in test_dict automatically receives a @counts dict that sums the outcomes of all leaf tests beneath it (passed, failed, skipped, unexecuted, executed, total) and a @total_duration float

  • Configurable via pytest.ini / pyproject.toml options:

    • create_item_dict — enable/disable the plugin entirely (default: true)

    • set_collect_dict_markers — annotate collect_dict nodes with marker names (default: false)

    • set_test_dict_markers — annotate test_dict nodes with marker names (default: false)

    • set_test_dict_outcomes — record @outcome on each test node (default: true)

    • set_test_dict_durations — record @duration per test and @total_duration on parent nodes (default: false)

    • update_dict_on_test — update test_dict after every individual test in real-time (default: true)

    • set_test_dict_setup_teardown — record setup/teardown phase outcomes as separate nodes in test_dict (default: false)

    • set_test_hierarchy_dict_outcomes — bubble @counts up through all parent nodes (default: false)

    • set_test_hierarchy_dict_durations — bubble @total_duration up through all parent nodes (default: false)

  • Self-registers via the pytest11 entry point — no conftest.py changes required for basic use

  • Dicts are accessible from any hook via the plugin manager

Requirements

  • Python >= 3.11

  • pytest >= 8.3.0

Installation

You can install “pytest-item-dict” via pip from PyPI:

$ pip install pytest-item-dict

Usage

The plugin self-registers — no changes to your code are required for basic use. Access the hierarchies from any pytest hook via the plugin manager.

Accessing the dicts

# conftest.py
from pytest_item_dict.plugin import ItemDictPlugin, ITEM_DICT_PLUGIN_NAME

def pytest_collection_finish(session):
    plugin: ItemDictPlugin = session.config.pluginmanager.get_plugin(name=ITEM_DICT_PLUGIN_NAME)
    if plugin:
        collect_hierarchy = plugin.collect_dict.hierarchy   # populated after collection
        total_tests = plugin.collect_dict._total_tests      # recursive count of all tests

def pytest_sessionfinish(session, exitstatus):
    plugin: ItemDictPlugin = session.config.pluginmanager.get_plugin(name=ITEM_DICT_PLUGIN_NAME)
    if plugin:
        test_hierarchy = plugin.test_dict.hierarchy         # outcomes, durations, @counts

Hierarchy structure

Given suites/it/test_login.py::TestLogin::test_valid_credentials, the hierarchy is:

{
    "suites": {
        "@tests": 1,
        "it": {
            "@tests": 1,
            "test_login.py": {
                "@tests": 1,
                "TestLogin": {
                    "@tests": 1,
                    "test_valid_credentials": {}
                }
            }
        }
    }
}

After a full run with set_test_hierarchy_dict_outcomes = true, parent nodes gain @counts:

"test_login.py": {
    "@counts": {"passed": 1, "failed": 0, "skipped": 0, "unexecuted": 0, "executed": 1, "total": 1},
    "TestLogin": {
        "test_valid_credentials": {"@outcome": "passed"}
    }
}

Writing reports from conftest.py

# conftest.py
import json
from copy import deepcopy
from pathlib import Path
from pytest import Session
from pytest_item_dict.plugin import ItemDictPlugin, ITEM_DICT_PLUGIN_NAME

def pytest_collection_finish(session: Session) -> None:
    plugin: ItemDictPlugin = session.config.pluginmanager.get_plugin(name=ITEM_DICT_PLUGIN_NAME)
    if plugin:
        Path("output/collect_hierarchy.json").write_text(
            json.dumps(plugin.collect_dict.hierarchy, indent=2)
        )

def pytest_sessionfinish(session: Session) -> None:
    plugin: ItemDictPlugin = session.config.pluginmanager.get_plugin(name=ITEM_DICT_PLUGIN_NAME)
    if plugin:
        Path("output/test_hierarchy.json").write_text(
            json.dumps(plugin.test_dict.hierarchy, indent=2)
        )

pyproject.toml options

[tool.pytest.ini_options]
create_item_dict                 = true   # enable/disable the plugin (default: true)
set_collect_dict_markers         = false  # add @markers to collect_dict nodes
set_test_dict_markers            = false  # add @markers to test_dict nodes
set_test_dict_outcomes           = true   # record @outcome per test (default: true)
set_test_dict_durations          = false  # record @duration per test
update_dict_on_test              = true   # update test_dict after each test in real time
set_test_dict_setup_teardown     = false  # record setup/teardown phase outcomes
set_test_hierarchy_dict_outcomes = false  # bubble @counts up through all parent nodes
set_test_hierarchy_dict_durations= false  # bubble @total_duration up through all parent nodes

Counting tests

collect_dict.count_tests() is called automatically at the end of collection. It sets @tests on every non-leaf node and caches the total in _total_tests:

plugin.collect_dict._total_tests               # total collected (int)
plugin.collect_dict.hierarchy["suite"]["@tests"]  # count scoped to a subtree

You can also call it manually on any subtree:

subtree = plugin.collect_dict.hierarchy["suites"]["it"]
count = plugin.collect_dict.count_tests(node=subtree)

Contributing

Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.

License

Dual License:

Distributed under the terms of both the BSD-3 AND Mozilla Public License 2.0 licenses.

“pytest-item-dict” is free and open source software

Issues

If you encounter any problems, please file an issue along with a detailed description.

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_item_dict-1.3.3.tar.gz (59.4 kB view details)

Uploaded Source

Built Distribution

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

pytest_item_dict-1.3.3-py3-none-any.whl (32.4 kB view details)

Uploaded Python 3

File details

Details for the file pytest_item_dict-1.3.3.tar.gz.

File metadata

  • Download URL: pytest_item_dict-1.3.3.tar.gz
  • Upload date:
  • Size: 59.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pytest_item_dict-1.3.3.tar.gz
Algorithm Hash digest
SHA256 a5ecc4b0f56660c89422e83677ca749dc2c7d1d2a094d0826f812fc0fd570230
MD5 43a4cf2656ed0a9856887a03836464c5
BLAKE2b-256 7ab3324243b6b0451c80738a68488ccb4591574f2aa8354b470659c2dd733e36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_item_dict-1.3.3.tar.gz:

Publisher: publish-to-test-pypi.yml on anogowski/pytest-item-dict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytest_item_dict-1.3.3-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_item_dict-1.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 05b869aeac2f29a64c2276b3375b364ea2bf69dea964d5fe2c0d875f1aeebcec
MD5 b88969f0f31dc75394cb519695df03e4
BLAKE2b-256 c1db33e189ab9fcd8cf3352dd84b485d57f1c697d99ba3873b738dedf4c1e98b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytest_item_dict-1.3.3-py3-none-any.whl:

Publisher: publish-to-test-pypi.yml on anogowski/pytest-item-dict

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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