AutoTestGlobalSetupOutput#

class AutoTestGlobalSetupOutput[source]#

This table represents the output of a global setup command.

cmd: Optional[str]#

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: Optional[timedelta]#

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

exit_code: Optional[int]#

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