Skip to content

pytest_park

[docs] package pytest_park

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from pytest_park.__about__ import __version__
from pytest_park.core import (
    build_method_group_split_bars,
    build_method_history,
    build_method_statistics,
    build_overview_statistics,
    compare_method_history_to_reference,
    compare_method_to_all_prior_runs,
    list_methods,
    select_latest_and_previous_runs,
)
from pytest_park.data import BenchmarkLoadError, load_benchmark_folder
from pytest_park.models import BenchmarkCase, BenchmarkDelta, BenchmarkRun, BenchmarkStats, GroupSummary, TrendPoint
from pytest_park.utils import compare_runs, summarize_groups

__all__ = [
    "__version__",
    "BenchmarkCase",
    "BenchmarkDelta",
    "BenchmarkLoadError",
    "BenchmarkRun",
    "BenchmarkStats",
    "GroupSummary",
    "TrendPoint",
    "build_method_history",
    "build_method_group_split_bars",
    "build_method_statistics",
    "build_overview_statistics",
    "compare_method_history_to_reference",
    "compare_method_to_all_prior_runs",
    "compare_runs",
    "list_methods",
    "load_benchmark_folder",
    "select_latest_and_previous_runs",
    "summarize_groups",
]