AutoTestGlobalSetupOutput

class AutoTestGlobalSetupOutput[source]

This table represents the output of a global setup command.

cmd: str | None

The command that was run. If this is None this output is for the configured global setup command.

stdout: str

The stdout that was produced, is the empty string if no output was produced.

stderr: str

The stderr that was produced, is the empty string if no output was produced.

time_spend: timedelta | None

The time spend running the setup. If this is None the output is from before we recorded this value.

exit_code: int | None

The exit code of the command. If this is None the output is from before we recorded this value.