Parse CLI, and to the build based on it. The actual build work is done by do_build in implementing classes.
(self)
| 1080 | return None |
| 1081 | |
| 1082 | def timed_main(self): |
| 1083 | ''' |
| 1084 | Parse CLI, and to the build based on it. |
| 1085 | |
| 1086 | The actual build work is done by do_build in implementing classes. |
| 1087 | ''' |
| 1088 | if self.env['clean']: |
| 1089 | return self.clean() |
| 1090 | else: |
| 1091 | return self.build() |
| 1092 | |
| 1093 | # from aenum import Enum # for the aenum version |
| 1094 | TestResult = enum.Enum('TestResult', ['PASS', 'FAIL']) |