How to set up runner to test utility functions?
If I have a Common folder with utils.py which has some utility methods, I can run tests using: manage.py test common.utils --settings=..... But when I ran manage.py test, test inside common are not ran.
How can I call these tests?
Thanks!
Sorry You must be a logged in, registered user to answer a question.
Answers
In the end root('..') in testing.py was not pulling the entire project. Using root('../..'), solves the problem.
manubellido
on
So long as your test files begin with test_* and are in a directory tree with an __init__.py in each directory, it should find them.