Re: [Zope3-dev] [zope.testing] testbrowser/browser importing 'test' conflicts with Zope 2 testrunner

2007-01-19 Thread Andreas Jung
--On 19. Januar 2007 15:08:49 -0500 Benji York <[EMAIL PROTECTED]> wrote: Andreas Jung wrote: --On 19. Januar 2007 14:41:53 -0500 Benji York <[EMAIL PROTECTED]> wrote: Wouldn't that change just defer the error until that function is called? (which the testbrowser tests do) The patch solv

Re: [Zope3-dev] [zope.testing] testbrowser/browser importing 'test' conflicts with Zope 2 testrunner

2007-01-19 Thread Benji York
Andreas Jung wrote: --On 19. Januar 2007 14:41:53 -0500 Benji York <[EMAIL PROTECTED]> wrote: Wouldn't that change just defer the error until that function is called? (which the testbrowser tests do) The patch solves my problem and the testbrowser tests pass. I suspect that means the tests

Re: [Zope3-dev] [zope.testing] testbrowser/browser importing 'test' conflicts with Zope 2 testrunner

2007-01-19 Thread Andreas Jung
--On 19. Januar 2007 14:41:53 -0500 Benji York <[EMAIL PROTECTED]> wrote: Wouldn't that change just defer the error until that function is called? (which the testbrowser tests do) The patch solves my problem and the testbrowser tests pass. Andreas pgpivN2G5VcEl.pgp Description: PGP signa

Re: [Zope3-dev] [zope.testing] testbrowser/browser importing 'test' conflicts with Zope 2 testrunner

2007-01-19 Thread Benji York
Wouldn't that change just defer the error until that function is called? (which the testbrowser tests do) -- Benji York Senior Software Engineer Zope Corporation ___ Zope3-dev mailing list Zope3-dev@zope.org Unsub: http://mail.zope.org/mailman/options/z

Re: [Zope3-dev] [zope.testing] testbrowser/browser importing 'test' conflicts with Zope 2 testrunner

2007-01-19 Thread Andreas Jung
--On 19. Januar 2007 14:35:53 -0500 Benji York <[EMAIL PROTECTED]> wrote: Andreas Jung wrote: the Zope 2 testrunner has a problem with zope.testing: testbrowser/browser.py tries a "from test import pystone" import it picks up the test.py of the Zo

Re: [Zope3-dev] [zope.testing] testbrowser/browser importing 'test' conflicts with Zope 2 testrunner

2007-01-19 Thread Benji York
Andreas Jung wrote: the Zope 2 testrunner has a problem with zope.testing: testbrowser/browser.py tries a "from test import pystone" import it picks up the test.py of the Zope 2 testrunner A workaround would be to move the import above PystoneTimer

[Zope3-dev] [zope.testing] testbrowser/browser importing 'test' conflicts with Zope 2 testrunner

2007-01-19 Thread Andreas Jung
Hi, the Zope 2 testrunner has a problem with zope.testing: testbrowser/browser.py tries a "from test import pystone" import it picks up the test.py of the Zope 2 testrunner that tries to re-add some configuration options to testrunner.setup causing th