>>> j = InvokeJob(id=3, target='missing_command')
>>> j.run()
- >>> print j.status
+ >>> print j.status # doctest: +ELLIPSIS
Command failed (127):
- /bin/sh: missing_command: command not found
+ /bin/sh: missing_command: ...not found
<BLANKLINE>
<BLANKLINE>
while executing
missing_command
>>> j.data['stdout']
''
- >>> j.data['stderr']
- '/bin/sh: missing_command: command not found\\n'
+ >>> j.data['stderr'] # doctest: +ELLIPSIS
+ '/bin/sh: missing_command: ...not found\\n'
"""
def run(self):
try: