[Answered ]-Runing Django tests with Jenkinsfile (with docker)

1👍

It’s nothing to do with jenkins or docker. The Django test runner searches the current directory (and subdirectories if it’s a python package). You can either cd app first, or specify the directory:

python app/manage.py test ./app

Leave a comment