feat(vscode): added pytest settings

MR !4
This commit is contained in:
2022-01-28 14:50:15 +09:30
parent 40a92b975f
commit 247f85c319

8
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,8 @@
{
"python.pythonPath": "dev_env/bin/python",
"python.testing.pytestArgs": [
"--verbose", "--junit-xml=./unit_test.junit.xml", "--override-ini=pytest.ini", "--tb=line", "test"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}