Skip to content

pytest_park.models

[docs] package pytest_park.models

 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
from pytest_park.models.benchmark import (
    BenchmarkCase,
    BenchmarkDelta,
    BenchmarkRun,
    BenchmarkStats,
    GroupSummary,
    TrendPoint,
)
from pytest_park.models.results import (
    ImprovementSummary,
    MethodHistoryComparison,
    MethodHistoryPoint,
    MethodImprovement,
    OverviewStatistics,
    PriorRunComparison,
    SplitBarRow,
)

__all__ = [
    "BenchmarkCase",
    "BenchmarkDelta",
    "BenchmarkRun",
    "BenchmarkStats",
    "GroupSummary",
    "ImprovementSummary",
    "MethodHistoryComparison",
    "MethodHistoryPoint",
    "MethodImprovement",
    "OverviewStatistics",
    "PriorRunComparison",
    "SplitBarRow",
    "TrendPoint",
]