Re: [Zope-dev] Zope Tests: 73 OK, 12 Failed, 4 Unknown

2011-03-25 Thread Marius Gedminas
On Fri, Mar 25, 2011 at 07:15:14PM +0100, Hanno Schlichting wrote:
> On Fri, Mar 25, 2011 at 6:17 PM, Marius Gedminas  wrote:
> >> > Subject: FAILED : winbot / z3c.coverage_py_265_32
> >> > From: buildbot at winbot.zope.org
> >> > Date: Wed Mar 23 23:31:40 EDT 2011
> >> > URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036062.html
> >>
> >> This package looks to belong to Stephan, Adam Groszer, and Marius Gedminas.
> >
> > The failure appears to be caused by the buildbot machine not having
> > enscript, which is used to add syntax highlighting to Python code.
> > Google suggests http://gnuwin32.sourceforge.net/packages/enscript.htm
> >
> > I'd like to take some time and rewrite the z3c.coverage to use Pygments
> > instead of piping the output through an enscript subprocess, but I'd
> > like it even more if someone else went ahead and did that. ;-)
> 
> May I suggest you just switch to using to coverage by Ned Batchelder
> instead [1]?

That's what I've done, and that's why z3c.coverage is not high up on my
priority list.

> A typical buildout setup can look like the one described at
> http://pypi.python.org/pypi/plone.testing/4.0a3#coverage-reporting
> assuming you have a zc.recipe.testrunner script called bin/test.

I've never managed to make 'bin/coverage run bin/test' work with
zc.buildout 1.5.0 and recent zc.recipe.testrunner.  Something about the
site.py magic that buildout now does, I think.

I end up doing hacks like

[coverage-test]
recipe = zc.recipe.testrunner
eggs = myapp
defaults = ['--tests-pattern', '^f?tests$$', '-v']
initialization =
  # hack because zc.testrunner 1.4.0 produces an _insane_ bin/test
  # that cannot be run with bin/coverage run bin/test, or even
  # bin/python bin/test
  import coverage, atexit
  c = coverage.coverage(data_file='../../../.coverage')
  def _when_done(c=c): c.stop(), c.save()
  atexit.register(_when_done)
  c.start()

which make me sad.

Marius Gedminas
-- 
http://pov.lt/ -- Zope 3/BlueBream consulting and development


signature.asc
Description: Digital signature
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Zope Tests: 73 OK, 12 Failed, 4 Unknown

2011-03-25 Thread Stephan Richter
On Friday, March 25, 2011, Hanno Schlichting wrote:
> May I suggest you just switch to using to coverage by Ned Batchelder
> instead [1]?

I like the new coverage package too, but the HTML output is not as nice, so I 
always find myself going back to the old version. I already prodded Marius 
about making z3c.coverage work with Ned's latest version. :-)

Regards,
Stephan
-- 
Entrepreneur and Software Geek
Google me. "Zope Stephan Richter"
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Zope Tests: 73 OK, 12 Failed, 4 Unknown

2011-03-25 Thread Hanno Schlichting
On Fri, Mar 25, 2011 at 6:17 PM, Marius Gedminas  wrote:
>> > Subject: FAILED : winbot / z3c.coverage_py_265_32
>> > From: buildbot at winbot.zope.org
>> > Date: Wed Mar 23 23:31:40 EDT 2011
>> > URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036062.html
>>
>> This package looks to belong to Stephan, Adam Groszer, and Marius Gedminas.
>
> The failure appears to be caused by the buildbot machine not having
> enscript, which is used to add syntax highlighting to Python code.
> Google suggests http://gnuwin32.sourceforge.net/packages/enscript.htm
>
> I'd like to take some time and rewrite the z3c.coverage to use Pygments
> instead of piping the output through an enscript subprocess, but I'd
> like it even more if someone else went ahead and did that. ;-)

May I suggest you just switch to using to coverage by Ned Batchelder
instead [1]?

It has a C extension for the coverage part. So running tests with or
without coverage tracking ends up without any speed difference. The
--coverage option to zope.testrunner is extremely slow compared to
this. There's an HTML output option with syntax highlighting and a XML
variant for consumption in tools like Jenkins Cobertura plugin.

A typical buildout setup can look like the one described at
http://pypi.python.org/pypi/plone.testing/4.0a3#coverage-reporting
assuming you have a zc.recipe.testrunner script called bin/test.

Hanno

[1] http://pypi.python.org/pypi/coverage
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Zope Tests: 73 OK, 12 Failed, 4 Unknown

2011-03-25 Thread Marius Gedminas
On Thu, Mar 24, 2011 at 09:53:45AM -0400, Tres Seaver wrote:
> > Subject: FAILED : Zope 3.4 Known Good Set / py2.4-32bit-linux
> > From: buildbot at pov.lt
> > Date: Wed Mar 23 22:26:52 EDT 2011
> > URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036056.html
> 
> IS there a 3.4 KGS doctor in the house?

I feel some responsibility to keep that buildbot green.

The failure here is caused by a duplicate Content-Length header in a
sourceforge.net response.  I saw in this list that it was being taken
care of, and didn't know what else I could do, so didn't do anything.
I didn't notice the allow-hosts workaround until just now.

Although this morning ^W afternoon there are new and interesting
failures... *sigh*

> > Subject: FAILED : winbot / z3c.coverage_py_265_32
> > From: buildbot at winbot.zope.org
> > Date: Wed Mar 23 23:31:40 EDT 2011
> > URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036062.html
> 
> This package looks to belong to Stephan, Adam Groszer, and Marius Gedminas.

The failure appears to be caused by the buildbot machine not having
enscript, which is used to add syntax highlighting to Python code.
Google suggests http://gnuwin32.sourceforge.net/packages/enscript.htm

I'd like to take some time and rewrite the z3c.coverage to use Pygments
instead of piping the output through an enscript subprocess, but I'd
like it even more if someone else went ahead and did that. ;-)

Marius Gedminas
-- 
http://pov.lt/ -- Zope 3/BlueBream consulting and development


signature.asc
Description: Digital signature
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Zope Tests: 73 OK, 12 Failed, 4 Unknown

2011-03-25 Thread Gediminas Paulauskas
2011/3/24 Tres Seaver :
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On 03/24/2011 07:57 AM, Zope Tests Summarizer wrote:
>
>> Subject: FAILED : Zope 3.4 Known Good Set / py2.4-32bit-linux
>> From: buildbot at pov.lt
>> Date: Wed Mar 23 22:26:52 EDT 2011
>> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036056.html
>
> IS there a 3.4 KGS doctor in the house?

I have tried to fix the 3.4 issues. Let's wait for tomorrow.

>> Subject: FAILED : winbot / z3c.rml_py_265_32
>> From: buildbot at winbot.zope.org
>> Date: Wed Mar 23 22:40:00 EDT 2011
>> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036057.html
>
> This package looks to be mostly Stephan Richter's work, with
> contributions from some of the Usual Suspects.

We use z3c.rml in SchoolTool and it works... Strange errors, though,
haven't investigated yet.

>> Subject: UNKNOWN : Zope-2.13 Python-2.6.5 : Linux
>> From: Zope Tests
>> Date: Thu Mar 24 02:08:58 EDT 2011
>> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036071.html
>>
>> Subject: UNKNOWN : Zope-2.13-alltests Python-2.6.5 : Linux
>> From: Zope Tests
>> Date: Thu Mar 24 02:10:58 EDT 2011
>> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036072.html
>>
>> Subject: UNKNOWN : Zope-trunk Python-2.6.5 : Linux
>> From: Zope Tests
>> Date: Thu Mar 24 02:12:58 EDT 2011
>> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036073.html
>>
>> Subject: UNKNOWN : Zope-trunk-alltests Python-2.6.5 : Linux
>> From: Zope Tests
>> Date: Thu Mar 24 02:14:58 EDT 2011
>> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036074.html
>
> These are all failures to download the 'mechanize' package, due to the
> SourceForge bug (multiple 'Content-Type' headers).  We can address via:
>
> - - Using setuptools-0.6c12dev-r88793.tar.gz (PJE has merged my
>  workaround).
>
> - - Waiting for the SF guys to fix the bug,
>  http://sourceforge.net/apps/trac/sourceforge/ticket/18486
>
> - - Blocking the buildouts from using SF, as suggested yesterday by adding
>  'allow-hosts' to the buildout.cfg, as suggested by Laurence Rowe::
>
>  allow-hosts =
>    *.python.org

I do not touch Zope2, and none of the options is appealing. The last
one is simplest...

For Zope 3.4 the buildout.cfg is generated from template in zope.kgs
egg, did not want to make a release of it just to add a workaround.

But I discovered that latest bugfix releases, ClientForm 0.2.10 and
mechanize 0.1.11, do not manifest this problem. So the 4th workaround
is to upgrade them.

Gediminas
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Zope Tests: 73 OK, 12 Failed, 4 Unknown

2011-03-24 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 03/24/2011 07:57 AM, Zope Tests Summarizer wrote:

> Subject: FAILED : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
> From: jdriessen at thehealthagency.com
> Date: Wed Mar 23 16:02:31 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036010.html

A bootstrap error (presumably tranisent network issue?):  couldn't
install setuptools.  Jan-Jaap says he has fixed the issue.

> Subject: FAILED : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
> From: jdriessen at thehealthagency.com
> Date: Wed Mar 23 16:30:56 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036018.html

Ditto.

> Subject: FAILED : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
> From: jdriessen at thehealthagency.com
> Date: Wed Mar 23 16:36:40 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036021.html

Ditto.

> Subject: FAILED : winbot / zc_buildout_dev py_254_win32
> From: buildbot at winbot.zope.org
> Date: Wed Mar 23 17:27:21 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036035.html
> 
> Subject: FAILED : winbot / zc_buildout_dev py_265_win32
> From: buildbot at winbot.zope.org
> Date: Wed Mar 23 17:27:51 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036036.html
> 
> Subject: FAILED : winbot / zc_buildout_dev py_265_win64
> From: buildbot at winbot.zope.org
> Date: Wed Mar 23 17:28:02 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036037.html
> 
> Subject: FAILED : winbot / zc_buildout_dev py_270_win32
> From: buildbot at winbot.zope.org
> Date: Wed Mar 23 17:28:27 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036038.html
> 
> Subject: FAILED : winbot / zc_buildout_dev py_270_win64
> From: buildbot at winbot.zope.org
> Date: Wed Mar 23 17:28:39 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036039.html

Jim said on Tuesday that he was investigating the buildout test breakage
on Windows.

> Subject: FAILED : Zope 3.4 Known Good Set / py2.4-32bit-linux
> From: buildbot at pov.lt
> Date: Wed Mar 23 22:26:52 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036056.html

IS there a 3.4 KGS doctor in the house?

> Subject: FAILED : winbot / z3c.rml_py_265_32
> From: buildbot at winbot.zope.org
> Date: Wed Mar 23 22:40:00 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036057.html

This package looks to be mostly Stephan Richter's work, with
contributions from some of the Usual Suspects.

> Subject: FAILED : winbot / z3c.coverage_py_265_32
> From: buildbot at winbot.zope.org
> Date: Wed Mar 23 23:31:40 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036062.html

This package looks to belong to Stephan, Adam Groszer, and Marius Gedminas.

> Subject: FAILED : winbot / z3c.recipe.paster_py_265_32
> From: buildbot at winbot.zope.org
> Date: Thu Mar 24 00:02:42 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036064.html

Thanks, Michael, for tackling this one!

> Subject: UNKNOWN : Zope-2.13 Python-2.6.5 : Linux
> From: Zope Tests
> Date: Thu Mar 24 02:08:58 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036071.html
> 
> Subject: UNKNOWN : Zope-2.13-alltests Python-2.6.5 : Linux
> From: Zope Tests
> Date: Thu Mar 24 02:10:58 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036072.html
> 
> Subject: UNKNOWN : Zope-trunk Python-2.6.5 : Linux
> From: Zope Tests
> Date: Thu Mar 24 02:12:58 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036073.html
> 
> Subject: UNKNOWN : Zope-trunk-alltests Python-2.6.5 : Linux
> From: Zope Tests
> Date: Thu Mar 24 02:14:58 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036074.html

These are all failures to download the 'mechanize' package, due to the
SourceForge bug (multiple 'Content-Type' headers).  We can address via:

- - Using setuptools-0.6c12dev-r88793.tar.gz (PJE has merged my
  workaround).

- - Waiting for the SF guys to fix the bug,
  http://sourceforge.net/apps/trac/sourceforge/ticket/18486

- - Blocking the buildouts from using SF, as suggested yesterday by adding
  'allow-hosts' to the buildout.cfg, as suggested by Laurence Rowe::

  allow-hosts =
*.python.org


- -- 
===
Tres Seaver  +1 540-429-0999  tsea...@palladion.com
Palladion Software   "Excellence by Design"http://palladion.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk2LTOkACgkQ+gerLs4ltQ5iSgCdFfSkv3jkHxsQHMG6DfvLQwc/
/4MAoK8hLnivXa4nYsaExkrnUmeflu50
=U6PD
-END PGP SIGNATURE-

___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related

Re: [Zope-dev] Zope Tests: 73 OK, 12 Failed, 4 Unknown

2011-03-24 Thread Jan-Jaap Driessen
On 24 March 2011 12:57, Zope Tests Summarizer  wrote:
...
> Test failures
> -
>
> Subject: FAILED : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
> From: jdriessen at thehealthagency.com
> Date: Wed Mar 23 16:02:31 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036010.html
>
> Subject: FAILED : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
> From: jdriessen at thehealthagency.com
> Date: Wed Mar 23 16:30:56 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036018.html
>
> Subject: FAILED : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
> From: jdriessen at thehealthagency.com
> Date: Wed Mar 23 16:36:40 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036021.html

Fixed these on the buildslave.

-- 
Jan-Jaap Driessen
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Zope Tests: 73 OK, 12 Failed, 4 Unknown

2011-03-24 Thread Michael Howitz
Am 24.03.2011 um 12:57 schrieb Zope Tests Summarizer:
[...]
> Subject: FAILED : winbot / z3c.recipe.paster_py_265_32
> From: buildbot at winbot.zope.org
> Date: Thu Mar 24 00:02:42 EDT 2011
> URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036064.html

I fixed this test in r121107.


Yours sincerely,
-- 
Michael Howitz · m...@gocept.com · software developer
gocept gmbh & co. kg · forsterstraße 29 · 06112 halle (saale) · germany
http://gocept.com · tel +49 345 1229889 8 · fax +49 345 1229889 1
Zope and Plone consulting and development

___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 https://mail.zope.org/mailman/listinfo/zope-announce
 https://mail.zope.org/mailman/listinfo/zope )


[Zope-dev] Zope Tests: 73 OK, 12 Failed, 4 Unknown

2011-03-24 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Wed Mar 23 12:00:00 2011 UTC to Thu Mar 24 12:00:00 2011 UTC.
There were 89 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 24 from 
buildbot at winbot.zope.org, 8 from ccomb at free.fr, 45 from jdriessen at 
thehealthagency.com.


Test failures
-

Subject: FAILED : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 16:02:31 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036010.html

Subject: FAILED : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 16:30:56 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036018.html

Subject: FAILED : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 16:36:40 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036021.html

Subject: FAILED : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 23 17:27:21 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036035.html

Subject: FAILED : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 23 17:27:51 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036036.html

Subject: FAILED : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Wed Mar 23 17:28:02 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036037.html

Subject: FAILED : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 23 17:28:27 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036038.html

Subject: FAILED : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Wed Mar 23 17:28:39 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036039.html

Subject: FAILED : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Wed Mar 23 22:26:52 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036056.html

Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Mar 23 22:40:00 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036057.html

Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Mar 23 23:31:40 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036062.html

Subject: FAILED : winbot / z3c.recipe.paster_py_265_32
From: buildbot at winbot.zope.org
Date: Thu Mar 24 00:02:42 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036064.html


Unknown
---

Subject: UNKNOWN : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Mar 24 02:08:58 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036071.html

Subject: UNKNOWN : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Mar 24 02:10:58 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036072.html

Subject: UNKNOWN : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Mar 24 02:12:58 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036073.html

Subject: UNKNOWN : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Mar 24 02:14:58 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036074.html


Tests passed OK
---

Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 13:58:48 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035986.html

Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 14:00:15 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035987.html

Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 14:01:38 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035988.html

Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 14:03:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035989.html

Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 14:04:32 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035990.html

Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 14:06:43 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035991.html

Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 14:09:08 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035992.html

Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.