Add .vscode
This commit is contained in:
parent
085e4459b9
commit
31b9b1b717
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"recommendations": ["littlefoxteam.vscode-python-test-adapter"]
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "pytest",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"module": "pytest"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"python.pythonPath": "venv/bin/python3.9",
|
||||
"python.testing.autoTestDiscoverOnSaveEnabled": true,
|
||||
"pythonTestExplorer.testFramework": "pytest"
|
||||
}
|
Loading…
Reference in New Issue