Add VS Code task to run pytests

This commit is contained in:
Florian Dupret 2021-04-07 08:50:12 +02:00
commit cf49b87693

9
.vscode/tasks.json vendored
View file

@ -52,6 +52,15 @@
"group": "groupA" "group": "groupA"
}, },
"problemMatcher": [] "problemMatcher": []
},
{
"label": "Run python tests",
"command": "make test",
"type": "shell",
"presentation": {
"reveal": "always"
},
"problemMatcher": []
} }
] ]
} }