From a2f6c873afe5dbb0b3aa44a03271222ad5164c4a Mon Sep 17 00:00:00 2001 From: Obijuan Date: Sun, 16 Jun 2024 17:13:58 +0200 Subject: [PATCH] add tox task --- .vscode/tasks.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index b5cc162..646b14c 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -31,6 +31,22 @@ "message": 5 } } - } + }, + { + "label": "Tox", + "type": "shell", + "command": "${command:python.interpreterPath}", + "args": ["-m", "tox"], + "presentation": { + "echo": true, + "reveal": "always", + "focus": false, + "panel": "shared", + "showReuseMessage": false, + "clear": true + }, + "problemMatcher": [] + }, + ] }