Pragmatic Testing Framework for Python with BDD-style syntax and pluggable architecture
49
Pending
Does it follow best practices?
Impact
49%
1.08xAverage score across 10 eval scenarios
Pending
The risk profile of this skill
A CLI helper that runs a portion of the scenario suite for multi-worker pipelines while keeping ordering predictable.
-- untouched to the test runner while preserving slice/order settings @test@generates
from typing import Sequence
def run_from_cli(argv: Sequence[str]) -> int:
"""
Parse CLI arguments for slice selection and ordering, then run the suite.
Args:
argv: Raw CLI arguments (excluding the executable).
Returns:
Exit code from the delegated test runner invocation.
"""
def build_parser():
"""Return an argument parser configured for slice/order flags and passthrough args."""Scenario runner that supports slicing suites into numbered portions and ordering them deterministically across workers.
@satisfied-by
docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10