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
Source:stackexchange.com