[Zope-dev] Zope Tests: 3 OK, 5 Failed

2009-07-31 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Thu Jul 30 12:00:00 2009 UTC to Fri Jul 31 12:00:00 2009 UTC.
There were 8 messages: 8 from Zope Tests.


Test failures
-

Subject: FAILED (failures=1) : Zope-2.12 Python-2.6.2 : Linux
From: Zope Tests
Date: Thu Jul 30 20:50:18 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-July/012186.html

Subject: FAILED (failures=1) : Zope-2.12-alltests Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Jul 30 20:52:18 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-July/012187.html

Subject: FAILED (failures=7) : Zope-2.12-alltests Python-2.6.2 : Linux
From: Zope Tests
Date: Thu Jul 30 20:54:18 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-July/012188.html

Subject: FAILED (failures=1) : Zope-trunk Python-2.6.2 : Linux
From: Zope Tests
Date: Thu Jul 30 20:56:18 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-July/012189.html

Subject: FAILED (failures=7) : Zope-trunk-alltests Python-2.6.2 : Linux
From: Zope Tests
Date: Thu Jul 30 20:58:18 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-July/012190.html


Tests passed OK
---

Subject: OK : Zope-2.10 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Jul 30 20:44:17 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-July/012183.html

Subject: OK : Zope-2.11 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Jul 30 20:46:17 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-July/012184.html

Subject: OK : Zope-2.12 Python-2.4.6 : Linux
From: Zope Tests
Date: Thu Jul 30 20:48:17 EDT 2009
URL: http://mail.zope.org/pipermail/zope-tests/2009-July/012185.html

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


[Zope-dev] z3c.jsonrpc and zope3.4 egg versions

2009-07-31 Thread Gustavo Rahal
Hello

I'm trying to use z3c.jsonrpc with Zope3.4 but I'm encountering problems
with imports that z3c.jsonrpc does from zope.publisher.

From http://download.zope.org/zope3.4/3.4.0/versions.cfg I see that
zope.publisher for zope3.4 is 3.4.6 but the latest version
of zope.publisher from svn is 3.8.0.

From reading the Changes section of
http://pypi.python.org/pypi/z3c.jsonrpc it seems like version 0.5.3 did
changes to cope with changes of zope.publisher newer versions (newer
then what comes with zope3.4).

I haven't tried but I imagine that if I downgrade z3c.jsonrpc to version
0.5.2 things might work but then some questions came into my mind as i'm
new to zope3 and buildout/eggs world.

1. Am I looking things in the wrong way or zope 3 components don't
necessary follow the stable release of zope3 but rather a zope component
version (in this case z3c.jsonrpc is following zope.publisher not
zope3.4)

2. If 1 is true, I imagine that whenever I try a zope3 component It's a
trial and error adventure and it's not guaranteed that developer is
following zope3 versions.

3. If 2 is true, isn't there a better way to do things? :)


Appreciate some help 

Thanks

-- 
Gustavo Matheus Rahal
IBM Linux Technology Center


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


Re: [Zope-dev] zope.testing 3.8 fails in mysterious ways

2009-07-31 Thread Godefroid Chapelle
Sidnei da Silva wrote:
 On Thu, Jul 30, 2009 at 9:33 PM, Martin Aspelioptilude+li...@gmail.com 
 wrote:
 Unfortunately, I've got other packages that depend on a newer
 zope.testing (specifically, collective.testcaselayer). But I thought
 zope.testing aimed to be able to run any valid tests, so it sounds
 like a bug in zope.testing regardless, at least since every other test
 I've run in the same instance work fine.
 
 The traceback you pasted shows an UnboundLocalError. What about
 looking at the source and figuring out why that local variable is not
 defined?
 
 -- Sidnei

I bumped into the same bug while working on the same package...

I allowed myself to add the missing assignment.
However, I'd like someone to check over my shoulder.
http://mail.zope.org/pipermail/checkins/2009-July/036586.html

Further, this bug is triggered by another one happening when running 
tests with buildout in plone.z3cform current trunk (r102411).

The test runner is trying to spawn a subprocess with the --resume-layer 
argument.  However, the --resume-layer argument is not accepted by the 
subprocess.

This produces an error in a format not foreseen by the error parser. 
(which then triggered the UnboundLocalError).

It would be nice if someone with a better understanding of the 
testrunner could take a look and understand why the --resume-layer stuff 
happens. Christian ?

-- 
Godefroid Chapelle (aka __gotcha) http://bubblenet.be
___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] zope.testing 3.8 fails in mysterious ways

2009-07-31 Thread Martin Aspeli
Sidnei da Silva wrote:
 On Thu, Jul 30, 2009 at 9:33 PM, Martin Aspelioptilude+li...@gmail.com 
 wrote:
 Unfortunately, I've got other packages that depend on a newer
 zope.testing (specifically, collective.testcaselayer). But I thought
 zope.testing aimed to be able to run any valid tests, so it sounds
 like a bug in zope.testing regardless, at least since every other test
 I've run in the same instance work fine.
 
 The traceback you pasted shows an UnboundLocalError. What about
 looking at the source and figuring out why that local variable is not
 defined?

Thanks.

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