Skip to content

Commit fe2e1a6

Browse files
committed
add tox task for vscode
1 parent c53575a commit fe2e1a6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "test with tox",
8+
"type": "shell",
9+
"command": "tox",
10+
"group": {
11+
"kind": "test",
12+
"isDefault": true
13+
}
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)