Zope-Dev
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1999 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1998 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
March 2011
- 41 participants
- 57 discussions
30 Jul '11
Hi,
I have a test section in buildout (version 1.5.2) which uses the environment option to get os.environ configs into the test script.
But the environment configuration does not show up in the generated script.
The recipe I use is zc.recipe.testrunner 1.4.0 and Python 2.5 (virtualenv).
When running the tests of zc.recipe.testrunner with this Python many of them fail including the test for the environment option.
Is it intensional that zc.recipe.testrunner does not run when using a virtualenv'ed Python?
P.S.: The Bugtracker of this project https://bugs.launchpad.net/zc.recipe.testrunner is currently disabled, so I was unable to put this there.
Yours sincerely,
--
Michael Howitz · mh(a)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
4
6
Hi there,
Some of you might have noticed that some time ago the first version of
`zope.pytest` was released:
http://pypi.python.org/pypi/zope.pytest
It's a try to make usage of `pytest` more comfortable in Zope-based
environments. `zope.pytest` is mainly based on Martijns, Jan-Wijbrands,
and Christian Klingers efforts. I put in some bits too.
Right now we have a problem with pytest integration when it comes to ZCA
setups: among other things `zope.pytest` offers a pytest-funcarg__
compatible function to automate ZCML based fixtures, i.e. it
automatically adds setup and teardown functionality before/after test
functions if requested by the test writer like this::
import my.project
from zope.pytest import configure
from zope.component import queryUtility
def pytest_funcarg__config(request):
return configure(request, my.project, 'ftesting.zcml')
def test_myutil_registered(config):
util = queryUtility(
my.project.interfaces.ISomeIface,
name = 'myutil',
default = None)
assert util is not None
Here for test functions requiring an argument named ``config`` it is
guaranteed that before the test function is run a ZCA initialization is
performed based on the ZCML configuration given in the ``ftesting.zcml``
of `my.project`. This configuration is cached for the whole test session
(the complete test run including all tests).
If we assume that the used `ftesting.zcml` provides a named utility
named ``myutil`` then the call to ``configure`` in the
funcarg__-function should perform that registration and the
'myutil_registered' test should succeed.
All that works very well -- in principle. The problem is: the
`configure` function calls the registry setup before any real test is
run and performs a teardown only after the last of all tests was run.
And that leads to side-effects.
In other words: all tests share the same global ZCA registrations and
changes to the registrations in one test will affect other tests run
thereafter. We have a lack of test isolation.
Example::
import my.project
from zope.pytest import configure
from zope.component import queryUtility, provideUtility
from zope.interface import Interface
def pytest_funcarg__config(request):
return configure(request, my.project, 'ftesting.zcml')
def test_1(config):
util = object()
provideUtility(util, provides=Interface, name='a_util')
def test_2(config):
util = queryUtility(Interface, name='a_util', default=None)
assert util is None
def test_3():
util = queryUtility(Interface, name='a_util', default=None)
assert util is None
Here the second test will fail. Even worse, also the third test will
fail, which does not require a ZCA setup at all.
That's because the global registry is setup before all tests and not
torn down before the last test was run.
This behaviour is partly intentional: we do not want to setup/teardown
the ZCA before/after single test functions as this would increase time
consumed by test runs dramatically. Instead we want to reduce the number
of ZCA setups/teardown as far as possible.
We _could_ do a per testfunction setup/teardown by simply using a
different test scope in `configure`. `pytest` offers three kinds of
scope for that purpose: `session`, `module`, and `function`. `session`
is the current default. Using `function` as scope we would get complete
test isolation but pretty long lasting test runs. That could stop people
from writing tests. Something we would like to avoid by all means.
We could instead use `module` as default scope, so that all test
functions inside a module would share one ZCA configuration (and for
different test modules the setup would be performed from scratch). This
might be a reasonable compromise. Test isolation of single tests inside
a test module would of course be broken but one could say: if you want a
fresh registry, just put your tests inside a new test module.
With Zope test layers there might be a similar problem (each layer can
create a global ZCA configuration that then will be shared amongst all
applied test methods) but I think people are used to it and can cope
with that specific test isolation breakage.
A big advantage of test layers over `pytest` testing scopes might be
that you can spread your tests associated to a certain layer over many
files/modules/packages as you like and the setup/teardown will
nevertheless only be performed once for each layer (well, normally at
least). If you have one layer and that's enough for you, you will only
have one ZCA-setup/teardown in the whole testrun. That's fast and
certainly fits many real-world use-cases.
Compared to Zope test layers I came to the conclusion that there is not
much like this concept already in `pytest` and the behaviour of test
layers can not easily be faked. `pytest` provides only the three
mentioned scopes as kind of 'natural' layers. Spreading fixtures over
many modules (as layers easily do) might contradict with the basic
design goals of pytest and I am pretty sure that Holge Krekel wouldn't
like it.
Overall, we're now looking for a satisfying solution in terms of runtime
and isolation. Some of the questions that arise:
Would it make sense to bring the Zope layer concept into `pytest`?
Are there already possibilities to mimic testlayer-like behaviour in
`pytest` which we simply overlooked?
Are there cheap/fast ways to cache/restore registry setups we hadn't had
on the screen? Really fast setups/cache-restores could make even
function-wise registrations a considerable thing.
Would it simply be okay to use the 'module' scope for registration
setups?
Or do you have completely different ideas how to solve that issue?
Any comments are really appreciated!
Best regards,
--
Uli
11
34
I'm still in Atlanta, and Arc Riley asked for a Zope person to
possibly mentor some zope.* project for Python Software Foundation
this year. They probably want to get more of the Zope Toolkit ported
to Python 3. I forwarded the roadmap to him, so anyone who wants to
mentor, that would be great.
I've said I'm available to ask questions about porting and help from a
technical point of view, but I suck at the mentoring part, so somebody
else that does that is needed.
Mail him at arcriley(a)gmail.com if interested.
//Lennart
12
40
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Too many never-resolve failures in our buildbots makes their output just
noise: the amount of effort required to diagnose the cause of a failure
seems to have no payoff if we don't get them each cleared up.
I'm just about done with trying to diagnose them, myself, which is
making me sad, as I *want* to be pleased with the quality of the
software our community produces.
Tres.
- --
===================================================================
Tres Seaver +1 540-429-0999 tseaver(a)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/
iEYEARECAAYFAk2HdRQACgkQ+gerLs4ltQ6zMQCgt2V6zhx/zKRJBmI3KSw5qD75
OgsAoJYLAmLGSMd9p+ZbrMqjZwDk99UU
=l0kU
-----END PGP SIGNATURE-----
7
15
Hi,
I added nl translations to z3c.schema, could someone grant me
('janjaapdriessen') pypi access so I can release this as 0.7.1?
Thanks,
--
Jan-Jaap Driessen
4
5
Summary of messages to the zope-tests list.
Period Tue Mar 29 11:00:00 2011 UTC to Wed Mar 30 11:00:00 2011 UTC.
There were 93 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 23 from buildbot at winbot.zope.org, 8 from ccomb at free.fr, 50 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 29 16:41:25 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036536.html
Subject: FAILED : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 16:42:12 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036537.html
Subject: FAILED : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 16:42:59 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036538.html
Subject: FAILED : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 29 16:43:53 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036539.html
Subject: FAILED : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 17:00:31 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036544.html
Subject: FAILED : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 17:00:42 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036545.html
Subject: FAILED : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 29 17:00:53 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036546.html
Subject: FAILED : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 17:01:03 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036547.html
Subject: FAILED : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 29 17:01:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036548.html
Subject: FAILED : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:09:03 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036550.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:09:10 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036551.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:28:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036558.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Tue Mar 29 21:01:43 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036574.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Tue Mar 29 21:27:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036575.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Tue Mar 29 22:29:28 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036581.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 22:48:44 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036582.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 23:21:30 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036583.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 03:56:37 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036594.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 04:28:40 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036595.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 14:37:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036506.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 14:39:53 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036507.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 14:49:41 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036508.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 14:51:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036509.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 14:52:38 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036510.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 14:54:08 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036511.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 14:55:17 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036512.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 14:55:35 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036513.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:01:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036514.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:07:27 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036515.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:08:44 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036516.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:13:31 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036517.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:18:29 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036518.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:21:24 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036519.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:23:30 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036520.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:28:25 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036521.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:29:48 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036522.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:33:26 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036523.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:37:43 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036524.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:45:48 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036525.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 15:53:29 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036526.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 16:17:34 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036527.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 16:24:56 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036529.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 16:25:07 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036528.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 16:27:32 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036530.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 16:29:55 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036531.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 16:32:30 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036532.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 29 16:32:51 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036533.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 16:34:59 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036534.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 16:40:28 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036535.html
Subject: OK : winbot / ztk_11 py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 16:49:26 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036540.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 16:51:05 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036541.html
Subject: OK : winbot / ztk_11 py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 16:54:44 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036542.html
Subject: OK : winbot / ztk_11 py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 29 17:00:12 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036543.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:07:22 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036549.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:10:51 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036552.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:12:32 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036553.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:14:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036554.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:21:22 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036555.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:23:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036556.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:28:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036557.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:34:26 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036559.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:36:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036560.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:40:27 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036561.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:46:08 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036562.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:49:40 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036563.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 17:51:50 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036564.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 17:55:12 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036565.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 18:02:27 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036566.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 29 18:15:33 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036567.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 18:49:29 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036568.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 29 19:44:07 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036569.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 29 19:45:55 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036570.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 29 19:46:45 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036571.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 29 19:47:33 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036572.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 29 20:38:32 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036573.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 29 21:32:28 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036576.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 29 22:06:09 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036577.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 29 22:06:42 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036578.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 29 22:06:58 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036579.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Tue Mar 29 22:09:48 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036580.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Wed Mar 30 00:21:00 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036584.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Wed Mar 30 00:42:41 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036585.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Wed Mar 30 01:07:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036586.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Wed Mar 30 01:09:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036587.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 30 01:11:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036588.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 30 01:13:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036589.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 30 01:15:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036590.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 30 01:17:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036591.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 30 01:19:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036592.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 30 01:21:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036593.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 05:08:33 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036596.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 05:10:21 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036597.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 05:13:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036598.html
4
5
Summary of messages to the zope-tests list.
Period Wed Mar 30 11:00:00 2011 UTC to Thu Mar 31 11:00:00 2011 UTC.
There were 88 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 23 from buildbot at winbot.zope.org, 8 from ccomb at free.fr, 45 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 17:27:41 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036655.html
Subject: FAILED : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 17:27:52 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036656.html
Subject: FAILED : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Wed Mar 30 17:28:03 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036657.html
Subject: FAILED : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 17:28:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036658.html
Subject: FAILED : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Wed Mar 30 17:28:25 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036659.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Wed Mar 30 21:01:41 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036666.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Wed Mar 30 21:27:07 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036668.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Wed Mar 30 22:32:38 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036674.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 22:43:08 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036675.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 23:17:23 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036676.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 08:47:44 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036599.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 08:49:11 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036600.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 08:50:38 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036601.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 08:52:02 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036602.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 08:53:23 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036603.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 08:59:55 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036604.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:05:54 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036605.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:10:35 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036606.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:11:42 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036607.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:13:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036608.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:16:29 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036609.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:21:20 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036610.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:26:04 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036611.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:30:08 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036612.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:30:57 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036613.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:44:50 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036614.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 09:59:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036615.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 10:08:07 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036616.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 10:16:49 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036617.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 10:25:45 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036618.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 10:34:31 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036619.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:17:57 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036620.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:18:00 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036621.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:19:35 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036622.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:20:39 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036623.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:21:17 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036624.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:22:52 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036625.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:23:05 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036626.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:24:26 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036627.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:25:44 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036628.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:28:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036629.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:31:59 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036630.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:38:43 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036631.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:44:38 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036632.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:45:49 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036633.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:51:31 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036634.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 11:57:08 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036635.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 12:00:51 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036636.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 12:02:37 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036637.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 12:08:17 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036638.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 12:16:30 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036639.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 12:29:18 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036640.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 12:42:07 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036641.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 12:54:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036642.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 30 13:07:29 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036643.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 16:17:45 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036644.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 16:25:20 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036645.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Wed Mar 30 16:33:09 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036646.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 16:40:41 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036647.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Wed Mar 30 16:47:51 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036648.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 16:55:43 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036649.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 17:03:01 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036650.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Wed Mar 30 17:10:40 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036651.html
Subject: OK : winbot / ztk_11 py_254_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 17:16:44 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036652.html
Subject: OK : winbot / ztk_11 py_265_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 17:22:01 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036653.html
Subject: OK : winbot / ztk_11 py_265_win64
From: buildbot at winbot.zope.org
Date: Wed Mar 30 17:27:29 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036654.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 18:22:52 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036660.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 19:17:12 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036661.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Wed Mar 30 19:45:03 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036662.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Wed Mar 30 19:46:02 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036663.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Wed Mar 30 19:46:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036664.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Wed Mar 30 20:11:40 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036665.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Wed Mar 30 21:09:30 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036667.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Wed Mar 30 22:04:00 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036669.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Wed Mar 30 22:06:37 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036670.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Wed Mar 30 22:07:04 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036671.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Wed Mar 30 22:07:22 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036672.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Wed Mar 30 22:10:00 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036673.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Thu Mar 31 00:21:07 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036677.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Thu Mar 31 00:42:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036678.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Mar 31 01:05:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036679.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Mar 31 01:07:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036680.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Mar 31 01:09:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036681.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Mar 31 01:11:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036682.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Mar 31 01:13:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036683.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Mar 31 01:15:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036684.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Mar 31 01:17:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036685.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Thu Mar 31 01:19:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036686.html
2
1
Summary of messages to the zope-tests list.
Period Tue Mar 22 12:00:00 2011 UTC to Wed Mar 23 12:00:00 2011 UTC.
There were 137 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 29 from buildbot at winbot.zope.org, 9 from ccomb at free.fr, 87 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:49:48 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035861.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:38:49 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035876.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:07:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035885.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:12:35 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035887.html
Subject: FAILED : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:33:12 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035897.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:38:43 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035901.html
Subject: FAILED : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:48:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035914.html
Subject: FAILED : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 17:27:53 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035924.html
Subject: FAILED : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 17:28:05 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035925.html
Subject: FAILED : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 22 17:28:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035926.html
Subject: FAILED : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 17:28:27 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035927.html
Subject: FAILED : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 22 17:28:38 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035928.html
Subject: FAILED : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 17:50:51 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035929.html
Subject: FAILED : winbot / z3c.ptcompat_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 22:12:03 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035952.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Tue Mar 22 22:26:52 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035953.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 22:32:53 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035955.html
Subject: FAILED : winbot / z3c.form_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 22:45:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035956.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 23:05:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035958.html
Subject: FAILED : winbot / z3c.macro_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 23:06:49 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035959.html
Subject: FAILED : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 22 23:11:57 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035963.html
Subject: FAILED : winbot / z3c.pagelet_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 23:15:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035964.html
Subject: FAILED : winbot / z3c.recipe.paster_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 23:42:34 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035966.html
Subject: FAILED : winbot / z3c.template_py_265_32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 23:44:39 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035967.html
Subject: FAILED : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Wed Mar 23 04:18:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035985.html
Unknown
-------
Subject: UNKNOWN : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 23 02:10:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035981.html
Subject: UNKNOWN : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 23 02:12:20 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035982.html
Subject: UNKNOWN : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 23 02:14:20 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035983.html
Subject: UNKNOWN : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 23 02:16:20 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035984.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:15:13 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035849.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:16:36 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035850.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:17:57 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035851.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:19:22 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035852.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:20:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035853.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:26:21 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035854.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:32:28 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035855.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:38:28 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035856.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:43:18 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035857.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:45:20 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035858.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:47:52 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035859.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:48:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035860.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:53:10 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035862.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 13:58:02 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035863.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 14:02:45 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035864.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 14:14:56 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035865.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 14:23:03 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035866.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 14:30:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035867.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 14:38:50 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035868.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 14:46:23 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035869.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:25:58 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035870.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:31:53 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035871.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:35:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035872.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:37:02 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035873.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:37:31 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035874.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:38:40 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035875.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:40:32 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035877.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:40:56 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035878.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:47:25 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035879.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:53:04 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035880.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 15:54:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035881.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:01:24 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035882.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:04:37 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035883.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:07:00 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035884.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:12:28 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035886.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 16:17:44 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035888.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:19:21 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035889.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:24:45 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035890.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 16:25:21 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035891.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:26:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035892.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:27:39 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035893.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:29:30 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035894.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 22 16:32:59 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035895.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:33:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035896.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:34:22 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035898.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:35:08 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035899.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:38:37 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035900.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:39:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035902.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 16:40:27 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035903.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:40:36 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035904.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:41:59 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035905.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:42:58 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035906.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:43:22 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035907.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:44:10 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035908.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:44:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035909.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:45:40 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035910.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:47:13 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035911.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 22 16:48:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035912.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:48:41 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035913.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:50:28 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035915.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:52:34 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035916.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 16:54:41 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035917.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 16:56:45 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035918.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 17:04:02 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035919.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 22 17:11:37 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035920.html
Subject: OK : winbot / ztk_11 py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 17:17:04 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035921.html
Subject: OK : winbot / ztk_11 py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 17:22:15 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035922.html
Subject: OK : winbot / ztk_11 py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 22 17:27:39 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035923.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 17:54:53 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035930.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 17:58:59 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035931.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 18:02:59 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035932.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 18:06:45 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035933.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 18:23:43 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035934.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 18:30:34 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035935.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 18:56:37 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035936.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 19:18:05 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035937.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 19:33:56 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035938.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 19:55:36 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035939.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 22 20:12:28 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035940.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 20:17:12 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035941.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 20:38:22 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035942.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 22 20:43:37 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035944.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 22 20:44:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035943.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 22 20:44:20 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035945.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Tue Mar 22 21:06:39 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035946.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 21:16:32 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035947.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 21:47:01 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035948.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Tue Mar 22 22:00:54 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035949.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 22:09:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035950.html
Subject: OK : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Tue Mar 22 22:10:09 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035951.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 22:31:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035954.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 22:53:10 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035957.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Tue Mar 22 23:10:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035960.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 22 23:11:07 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035961.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Tue Mar 22 23:11:56 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035962.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Tue Mar 22 23:42:01 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035965.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Tue Mar 22 23:58:29 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035968.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 00:02:44 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035969.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 00:23:36 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035970.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 00:27:13 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035971.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 00:36:29 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035972.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 00:39:55 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035973.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Wed Mar 23 00:43:39 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035974.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Wed Mar 23 01:21:20 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035975.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Wed Mar 23 01:48:15 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035976.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Wed Mar 23 02:02:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035977.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Wed Mar 23 02:04:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035978.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 23 02:06:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035979.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Wed Mar 23 02:08:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/035980.html
6
9
Hi,
the German speaking Zope Users Group (DZUG e.V.) organizes a series of 4
sprints this year to support feature development within the proximity of
the ZTK and solve problems encountered by Zope, Plone and Python developers.
This is the announcement of the first sprint, although it's a bit late,
I'd like you to consider whether you might wanna join us.
Where and when
==============
The sprint is scheduled for April 6th 2011 to April 8th 2011 and will
take place at the Hasso-Plattner-Institut in Potsdam, Germany, which is
where Martin v. Löwis is working at.
On April 8th there will be a separate event in the evening for
presenting the results of the sprint to Non-Sprinters in a relaxed
atmosphere.
Topics
======
The sprint topics will revolve around PyPI and zc.buildout including:
* Making PyPI faster (Chameleon integration)
* Adding support for the PyPI mirroring protocol to zc.buildout
* Discussing how to deal with "private" releases
* Porting zc.buildout to Python 3
More topic suggestions in this area are welcome - we'll gather them and
review based on the following criteria:
* Each topic in the sprint should be supported and worked on by at
least two developers from independent organisations (to ensure
a reasonable amount of varying perspective).
* Each topic should be specific enough and limited in scope
so that we can deal with it in 2 days in such a way that we
get a result we can continue to build on and use.
* We do not only want to see code but also documentation: be
prepared to write module-specific developer documentation as well
as documentation on how to use what you build.
* Each topic shall be presented to others on Friday evening
in a way that clarifies it's relevance and context.
Please send your topic suggestions to sprints(a)dzug.org.
Participation
=============
Developers may participate after asking for an invitation and committing
to one of the selected topics or suggesting a topic that gets selected.
The organisation team may actively invite developers whose reputation
suggests that they would be highly valuable within the scope of the sprint.
Please be aware that the main working language of the sprint will be
German. We're happy to have non-German-speaking developers around but be
prepared to hear quite some amount of our tongue. ;)
Please send your requests for participation by email to
sprints(a)dzug.org
Sponsoring
==========
Organizing those sprints requires financial support - to make this
sprint series sustainable we kindly ask you to consider sponsoring our
effort. We have prepared sponsoring packages of 250 EUR to support a
single sprint or 800 EUR to support all 4 sprints. If you're interested
in a sponsoring package, please contact me by direct email.
More information
================
More information is available on the sprint website in German at
http://www.zope.de/community/veranstaltungen/1.-dzug-sprint-2011
If you would like to get more information in English, feel free to
respond to this post or contact me personally.
Best regards,
Christian
--
Christian Theune · ct(a)gocept.com
gocept gmbh & co. kg · forsterstraße 29 · 06112 halle (saale) · germany
http://gocept.com · tel +49 345 1229889 0 · fax +49 345 1229889 1
Zope and Plone consulting, development, hosting, operations
6
10
Summary of messages to the zope-tests list.
Period Mon Mar 28 11:00:00 2011 UTC to Tue Mar 29 11:00:00 2011 UTC.
There were 88 messages: 8 from Zope Tests, 4 from buildbot at pov.lt, 23 from buildbot at winbot.zope.org, 8 from ccomb at free.fr, 45 from jdriessen at thehealthagency.com.
Test failures
-------------
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:18:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036429.html
Subject: FAILED : Zope Buildbot / zope2.12-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 16:46:58 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036443.html
Subject: FAILED : Zope Buildbot / zope2.13-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 16:47:05 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036444.html
Subject: FAILED : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:06:20 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036453.html
Subject: FAILED : winbot / zc_buildout_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 17:28:13 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036466.html
Subject: FAILED : winbot / zc_buildout_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 17:28:34 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036467.html
Subject: FAILED : winbot / zc_buildout_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Mar 28 17:28:45 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036468.html
Subject: FAILED : winbot / zc_buildout_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 17:28:55 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036469.html
Subject: FAILED : winbot / zc_buildout_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Mar 28 17:29:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036470.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-64bit-linux
From: buildbot at pov.lt
Date: Mon Mar 28 21:01:33 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036485.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.4-32bit-linux
From: buildbot at pov.lt
Date: Mon Mar 28 21:27:31 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036487.html
Subject: FAILED : Zope 3.4 Known Good Set / py2.5-32bit-linux
From: buildbot at pov.lt
Date: Mon Mar 28 22:29:25 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036493.html
Subject: FAILED : winbot / z3c.rml_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 22:34:09 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036494.html
Subject: FAILED : winbot / z3c.coverage_py_265_32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 23:05:01 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036495.html
Tests passed OK
---------------
Subject: OK : Zope Buildbot / zope2.13_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 14:47:56 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036418.html
Subject: OK : Zope Buildbot / zope2.13_win-py2.7 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 14:50:28 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036419.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 14:59:29 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036420.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:00:53 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036421.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:02:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036422.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:03:44 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036423.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.4 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:05:08 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036425.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:05:11 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036424.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:10:52 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036426.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:16:54 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036427.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:18:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036428.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:22:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036430.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:27:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036431.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:28:07 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036432.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:32:56 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036433.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:36:22 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036434.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:37:54 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036435.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu64
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:42:53 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036436.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.5 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:44:41 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036437.html
Subject: OK : Zope Buildbot / zopetoolkit_win-py2.6 slave-win
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 15:52:43 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036438.html
Subject: OK : winbot / ztk_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 16:17:51 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036439.html
Subject: OK : winbot / ztk_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 16:25:30 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036440.html
Subject: OK : winbot / ztk_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Mar 28 16:33:13 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036441.html
Subject: OK : winbot / ztk_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 16:40:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036442.html
Subject: OK : winbot / ztk_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Mar 28 16:48:26 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036445.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 16:48:43 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036446.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 16:50:29 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036447.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 16:52:08 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036448.html
Subject: OK : winbot / ztk_10 py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 16:56:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036449.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 16:59:01 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036450.html
Subject: OK : winbot / ztk_10 py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 17:04:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036451.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:06:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036452.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:11:56 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036455.html
Subject: OK : winbot / ztk_10 py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Mar 28 17:12:00 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036454.html
Subject: OK : Zope Buildbot / zope2.12-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:15:20 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036456.html
Subject: OK : winbot / ztk_11 py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 17:17:25 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036457.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:17:40 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036458.html
Subject: OK : Zope Buildbot / zope2.13-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:17:55 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036459.html
Subject: OK : Zope Buildbot / zope2.13-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:20:16 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036460.html
Subject: OK : winbot / ztk_11 py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 17:22:36 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036461.html
Subject: OK : Zope Buildbot / zope2.14-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:22:51 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036462.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:23:14 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036463.html
Subject: OK : Zope Buildbot / zope2.14-py2.7 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:25:19 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036464.html
Subject: OK : winbot / ztk_11 py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Mar 28 17:28:01 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036465.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-ubuntu32
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:29:01 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036471.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.4 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:41:06 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036472.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 17:57:01 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036473.html
Subject: OK : Zope Buildbot / zopetoolkit-1.0-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 18:12:37 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036474.html
Subject: OK : winbot / ZODB_dev py_254_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 18:23:36 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036475.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 18:25:13 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036476.html
Subject: OK : Zope Buildbot / zopetoolkit-1.1-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 18:38:09 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036477.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.5 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 18:50:53 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036478.html
Subject: OK : Zope Buildbot / zopetoolkit-py2.6 slave-osx
From: jdriessen at thehealthagency.com
Date: Mon Mar 28 19:03:34 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036479.html
Subject: OK : winbot / ZODB_dev py_265_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 19:19:03 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036480.html
Subject: OK : ZTK 1.0 / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Mon Mar 28 19:44:50 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036481.html
Subject: OK : ZTK 1.0 / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Mar 28 19:46:04 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036482.html
Subject: OK : ZTK 1.0 / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Mar 28 19:46:46 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036483.html
Subject: OK : winbot / ZODB_dev py_265_win64
From: buildbot at winbot.zope.org
Date: Mon Mar 28 20:13:32 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036484.html
Subject: OK : winbot / ZODB_dev py_270_win32
From: buildbot at winbot.zope.org
Date: Mon Mar 28 21:07:48 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036486.html
Subject: OK : winbot / ZODB_dev py_270_win64
From: buildbot at winbot.zope.org
Date: Mon Mar 28 22:01:40 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036488.html
Subject: OK : ZTK 1.0dev / Python2.4.6 Linux 64bit
From: ccomb at free.fr
Date: Mon Mar 28 22:07:03 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036489.html
Subject: OK : ZTK 1.0dev / Python2.6.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Mar 28 22:07:27 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036490.html
Subject: OK : ZTK 1.0dev / Python2.5.5 Linux 64bit
From: ccomb at free.fr
Date: Mon Mar 28 22:07:45 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036491.html
Subject: OK : Zope 3.4 Known Good Set / py2.5-64bit-linux
From: buildbot at pov.lt
Date: Mon Mar 28 22:09:51 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036492.html
Subject: OK : Zope 3.4 KGS / Python2.4.6 64bit linux
From: ccomb at free.fr
Date: Tue Mar 29 00:21:01 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036496.html
Subject: OK : Zope 3.4 KGS / Python2.5.5 64bit linux
From: ccomb at free.fr
Date: Tue Mar 29 00:42:43 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036497.html
Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Mar 29 01:05:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036498.html
Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Tue Mar 29 01:07:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036499.html
Subject: OK : Zope-2.12 Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Mar 29 01:09:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036500.html
Subject: OK : Zope-2.12-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Mar 29 01:11:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036501.html
Subject: OK : Zope-2.13 Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Mar 29 01:13:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036502.html
Subject: OK : Zope-2.13-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Mar 29 01:15:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036503.html
Subject: OK : Zope-trunk Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Mar 29 01:17:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036504.html
Subject: OK : Zope-trunk-alltests Python-2.6.5 : Linux
From: Zope Tests
Date: Tue Mar 29 01:19:47 EDT 2011
URL: http://mail.zope.org/pipermail/zope-tests/2011-March/036505.html
5
4