From b2528e97b603c71cc05eb0a9dc50f6f8d67148f7 Mon Sep 17 00:00:00 2001 From: Simone Chemelli Date: Thu, 22 Jul 2021 18:30:54 +0200 Subject: [PATCH] Making Pytest default for VS code (#53203) --- .vscode/tasks.json | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 1308f535428..24d643b96bc 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,10 +5,7 @@ "label": "Run Home Assistant Core", "type": "shell", "command": "hass -c ./config", - "group": { - "kind": "test", - "isDefault": true - }, + "group": "test", "presentation": { "reveal": "always", "panel": "new" @@ -19,7 +16,9 @@ "label": "Pytest", "type": "shell", "command": "pytest --timeout=10 tests", - "dependsOn": ["Install all Test Requirements"], + "dependsOn": [ + "Install all Test Requirements" + ], "group": { "kind": "test", "isDefault": true @@ -48,7 +47,9 @@ "label": "Pylint", "type": "shell", "command": "pylint homeassistant", - "dependsOn": ["Install all Requirements"], + "dependsOn": [ + "Install all Requirements" + ], "group": { "kind": "test", "isDefault": true