How do I debug individual Django tests in vscode?
问题 I added a launch configuration that allows me to run all tests in Django and another that allows me to run the server, both of these work fine. I am looking for a way to debug an individual file, but using ${file} in the arguments gives a normal path which django doesn't like. I want a way to change ${file} into a python path so that I can debug my tests on a single file. python manage.py test --noinput --keepdb python.path.to.my.file works in the command line. The following configuration