VS Code一直未能发现我的Django项目的单元测试。
我已经安装了pytest
和pytest-django
库
项目结构(简体)
- root_project
- pytest.ini
- etc
- docs
- tests
- test_app.py
- django_project
- project_name
- settings
- develop.py
- testing.py
- production.py
- app_1
- app_2
- manage.py
pytest.ini 文件内容
[pytest]
DJANGO_SETTINGS_MODULE = "django_project.project_name.settings.testing"
python_files = test_*.py
settings.json 文件内容
"python.unitTest.unittestArgs": [
"-v",
"-s",
"root_project/tests",
"-p",
"test_*.py"
],
"python.unitTest.pyTestEnabled": true,
"python.unitTest.nosetestsEnabled": false,
"python.unitTest.unittestEnabled": false,
我一直收到此错误,没有发现任何测试: