The base64.b64encode() method doesn't seem to exist on Python 2.3. So I've switched it back to encodestring(...).strip(). I'm curious why buildbot didn't pick this up, since there is an existing unit test. web2 isn't in the setup.py list; maybe it should be? How does buildbot work? -- Scott Lamb <http://www.slamb.org/>
On Thu, Sep 29, 2005 at 08:00:05PM -0700, Scott Lamb wrote:
The base64.b64encode() method doesn't seem to exist on Python 2.3. So I've switched it back to encodestring(...).strip().
I'm curious why buildbot didn't pick this up, since there is an existing unit test. web2 isn't in the setup.py list; maybe it should be? How does buildbot work?
As you can see at e.g. http://twistedmatrix.com/buildbot/full-2.3/builds/801/shell/0, buildbot is configured to run "python2.3 -Wall ./bin/trial -to --recurse --random=0 twisted" in the root of the SVN checkout. This should find and run all tests in the twisted/ directory. It doesn't use setup.py, it just directly looks through the subdirectories. See the trial docs/source for details. -Andrew.
On 29 Sep 2005, at 20:45, Andrew Bennetts wrote:
On Thu, Sep 29, 2005 at 08:00:05PM -0700, Scott Lamb wrote:
've switched it back to encodestring(...).strip().
I'm curious why buildbot didn't pick this up, since there is an existing unit test. web2 isn't in the setup.py list; maybe it should be? How does buildbot work?
As you can see at e.g. http://twistedmatrix.com/buildbot/full-2.3/builds/801/shell/0, buildbot is configured to run "python2.3 -Wall ./bin/trial -to --recurse -- random=0 twisted" in the root of the SVN checkout. This should find and run all tests in the twisted/ directory. It doesn't use setup.py, it just directly looks through the subdirectories. See the trial docs/source for details.
Thanks. So it would pick it up...except buildbot's working on trunk, and this is on the web2-client branch. -- Scott Lamb <http://www.slamb.org/>
participants (2)
-
Andrew Bennetts
-
Scott Lamb