Fix errors in the test
This commit is contained in:
parent
f7969c2deb
commit
f791897449
3 changed files with 79 additions and 38 deletions
16
.vscode/launch.json
vendored
16
.vscode/launch.json
vendored
|
|
@ -4,6 +4,22 @@
|
|||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "PyTest Current File",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"module": "pytest",
|
||||
"justMyCode": true,
|
||||
"console": "integratedTerminal",
|
||||
"cwd": "${workspaceFolder}/src",
|
||||
"args": [
|
||||
"-vv",
|
||||
"${file}"
|
||||
],
|
||||
"env": {
|
||||
"PYTHONPATH": "${cwd}/src"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Python: Current File",
|
||||
"type": "python",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue