Last active
June 19, 2019 08:38
-
-
Save hgn/d8c52843d43d44cd6f936c2afcd34c48 to your computer and use it in GitHub Desktop.
Revisions
-
hgn revised this gist
Jun 19, 2019 . 1 changed file with 7 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,14 +3,17 @@ result = builddriver.execute("make debug") result.status() # can be True or False result.log() # return a path where the output is captured (/tmp/foo.log) result.tail() # return the last 30 lines of the executing output result.warnings() # return a list of all warnings result.errors() # return a list of all errors -
hgn created this gist
Jun 19, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ import builddriver result = builddriver.execute("make debug") result.status # can be True or False result.log # return a path where the output is captured (/tmp/foo.log) result.warnings # return a list of all warnings result.errors # return a list of all errors