IOTestStepLog

class IOTestStepLog[source]

The data for a single IO test step.

stdout: Just[str] | _Nothing[str] = Nothing

The stdout produced by this step.

stderr: Just[str] | _Nothing[str] = Nothing

The stderr produced by this step.

exit_code: Just[int] | _Nothing[int] = Nothing

The exit code of the step

time_spend: Just[timedelta] | _Nothing[timedelta] = Nothing

The time spend while running the step

started_at: Just[datetime | None] | _Nothing[datetime | None] = Nothing

The moment the step was started, if it has already been started.

achieved_points: Just[float] | _Nothing[float] = Nothing

The amount of points achieved in this step.

state: AutoTestStepResultState

The state of this step.

created_at: datetime

The moment the step result was created.