Re: problem with packages and path

2008-08-29 Thread Daniel
On Aug 29, 1:15 pm, Paul Boddie <[EMAIL PROTECTED]> wrote: > On 29 Aug, 19:08, Daniel <[EMAIL PROTECTED]> wrote: > > > > > > > I have tried running both commands above from the mypackage directory > > and unittests directory.  I get the following response universtally. > > > C:\mypackage>dir > >  V

Re: problem with packages and path

2008-08-29 Thread Paul Boddie
On 29 Aug, 19:08, Daniel <[EMAIL PROTECTED]> wrote: > > I have tried running both commands above from the mypackage directory > and unittests directory. I get the following response universtally. > > C:\mypackage>dir > Volume in drive C is Default > > Directory of C:\mypackage > > 08/29/2008 11

Re: problem with packages and path

2008-08-29 Thread Daniel
On Aug 28, 2:28 am, "Marco Bizzarri" <[EMAIL PROTECTED]> wrote: > On Wed, Aug 27, 2008 at 6:44 PM, Daniel <[EMAIL PROTECTED]> wrote: > > Hello, > > > I'm writing some unit tests for my python software which uses > > packages.  Here is the basic structure: > > > mypackage > >  __init__.py > >  modul

Re: problem with packages and path

2008-08-28 Thread Marco Bizzarri
On Wed, Aug 27, 2008 at 6:44 PM, Daniel <[EMAIL PROTECTED]> wrote: > Hello, > > I'm writing some unit tests for my python software which uses > packages. Here is the basic structure: > > mypackage > __init__.py > module1 >__init__.py >mod1.py > module2 >__init__.py >mod2.py > u

Re: problem with packages and path

2008-08-27 Thread Daniel
On Aug 27, 11:00 am, Paul Boddie <[EMAIL PROTECTED]> wrote: > On 27 Aug, 18:44, Daniel <[EMAIL PROTECTED]> wrote: > > > > > I'm writing some unit tests for my python software which uses > > packages.  Here is the basic structure: > > > mypackage > > [...] > > >   unittests > >     __init__.py > >  

Re: problem with packages and path

2008-08-27 Thread Daniel
On Aug 27, 11:00 am, Paul Boddie <[EMAIL PROTECTED]> wrote: > On 27 Aug, 18:44, Daniel <[EMAIL PROTECTED]> wrote: > > > > > I'm writing some unit tests for my python software which uses > > packages.  Here is the basic structure: > > > mypackage > > [...] > > >   unittests > >     __init__.py > >  

Re: problem with packages and path

2008-08-27 Thread Paul Boddie
On 27 Aug, 18:44, Daniel <[EMAIL PROTECTED]> wrote: > > I'm writing some unit tests for my python software which uses > packages.  Here is the basic structure: > > mypackage [...] >   unittests >     __init__.py >     alltests.py >     test1.py >     test2.py > > within alltests.py I would expect

problem with packages and path

2008-08-27 Thread Daniel
Hello, I'm writing some unit tests for my python software which uses packages. Here is the basic structure: mypackage __init__.py module1 __init__.py mod1.py module2 __init__.py mod2.py unittests __init__.py alltests.py test1.py test2.py within alltests.p