morepath / morepath-cookiecutter

A Cookiecutter Template for Morepath

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

env/bin/py.test could not find the tests

henri-hulski opened this issue · comments

After replacing in setup.cfg

[pytest]
norecursedirs = env

with

[pytest]
testpaths = {{cookiecutter.package_name}}

everything works fine.

I can't reproduce this problem. Do you have any more information?
Also, your proposal would not work a namespaced package is used.

We'd have to at least use

testpaths = {{cookiecutter.package_name.split('.')[0]}}

Actually I tried it again and now it's working.
So I think we should leave it.
When I recover the problem I will reopen.