Add pytest to vscode config

This commit is contained in:
ekzyis 2022-09-26 22:33:23 +02:00
parent 5fe52d480d
commit eb9f74ede0
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
{ {
"python.pythonPath": "venv/bin/python3.9", "python.pythonPath": "venv/bin/python3.9",
"python.testing.autoTestDiscoverOnSaveEnabled": true, "python.testing.autoTestDiscoverOnSaveEnabled": true,
"pythonTestExplorer.testFramework": "pytest" "pythonTestExplorer.testFramework": "pytest",
"python.testing.pytestArgs": ["test"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
} }