Determine if this task will run on this platform.
(self)
| 199 | return p.wait() |
| 200 | |
| 201 | def will_run(self): |
| 202 | """Determine if this task will run on this platform.""" |
| 203 | return sys.platform.startswith(tuple(self.platforms)) |
| 204 | |
| 205 | |
| 206 | class PythonTask(object): |