<div dir="ltr">Hi,<div><br></div><div>I'm new to buildbot development, but I thought I would share</div><div>the steps I have been using to test and fix Python 3 errors in builbot.</div><br>#<br># Create the virtualenv<br>#<br>export VENV=$PWD/env-3.6<br>export ROOT=$PWD/work<br>python3 -m venv $VENV<br>. $VENV/bin/activate<br>mkdir -p $ROOT<br>#<br># Checkout latest Twisted and install develop version<br>#<br>git clone <a href="https://github.com/twisted/twisted">https://github.com/twisted/twisted</a> $ROOT/twisted<br>cd $ROOT/twisted<br>python setup.py develop<br>#<br># Checkout latest Buildbot and install<br>#<br>git clone <a href="https://github.com/buildbot/buildbot">https://github.com/buildbot/buildbot</a> $ROOT/buildbot<br>cd $ROOT/buildbot<br>pip install -e pkg<br>pip install -e worker<br>pip install -e 'master[tls,test]'<br>#<br># Run the tests on worker<br>#<br>trial --reporter=bwverbose --rterrors buildbot_worker.test<br>#<br># Run the tests on master<br>#<br>trial --reporter=bwverbose --rterrors buildbot.test<div><br></div><div><br></div><div>I may have missed some configuration items,</div><div>but I've gotten pretty far with these steps!! :)</div><div><br></div><div>--</div><div>Craig</div><div><br></div></div>