[Python-Dev] 3.5 unittest does not support namespace packages for discovering (original) (raw)
INADA Naoki songofacandy at gmail.com
Thu Mar 23 11:53:31 EDT 2017
- Previous message (by thread): [Python-Dev] 3.5 unittest does not support namespace packages for discovering
- Next message (by thread): [Python-Dev] 3.5 unittest does not support namespace packages for discovering
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
There is already http://bugs.python.org/issue29642
On Thu, Mar 23, 2017 at 11:04 PM, Ilya Kazakevich <ilya.kazakevich at jetbrains.com> wrote:
Hello. I have following layout:
---tests | testmodule.py | init.py
When I launch "python.exe" -m unittest discover -t . -s tests" it works perfectly. But when I remove " init.py" it says Start directory is not importable: "tests'"
loader.py
: if startdir != topleveldir: isnotimportable = not os.path.isfile(os.path.join(startdir, 'init.py')) I believe_init_.py
does not play any role since Python 3.3, am I right? If so, it seems to be a bug. Should I create an issue? Ilya.
Python-Dev mailing list Python-Dev at python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/songofacandy%40gmail.com
- Previous message (by thread): [Python-Dev] 3.5 unittest does not support namespace packages for discovering
- Next message (by thread): [Python-Dev] 3.5 unittest does not support namespace packages for discovering
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]