add tox task for vscode

This commit is contained in:
Patrick Kanzler 2020-05-09 00:07:02 +02:00
parent c53575a155
commit fe2e1a6d28
1 changed files with 16 additions and 0 deletions

16
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "test with tox",
"type": "shell",
"command": "tox",
"group": {
"kind": "test",
"isDefault": true
}
}
]
}