Reputation: 691
I'm trying to write a Python script which automatically restarts buildbot if nothing is building. How can the script check to see if there's anything being built?
Upvotes: 1
Views: 79
Reputation: 26
According to your comments, you should:
buildbot stop --clean --no-wait
Upvotes: 1