From 7e9ff26b4c2d6e96412437c4b4f9a759f5ead1f5 Mon Sep 17 00:00:00 2001 From: Simone Chemelli Date: Wed, 24 Nov 2021 01:13:44 +0100 Subject: [PATCH] Add slow tests list to VScode task code coverage (#60183) --- .vscode/tasks.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 5488c3472de..1aea23fc781 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -64,7 +64,7 @@ "label": "Code Coverage", "detail": "Generate code coverage report for a given integration.", "type": "shell", - "command": "pytest ./tests/components/${input:integrationName}/ --cov=homeassistant.components.${input:integrationName} --cov-report term-missing", + "command": "pytest ./tests/components/${input:integrationName}/ --cov=homeassistant.components.${input:integrationName} --cov-report term-missing --durations-min=1 --durations=0", "group": { "kind": "test", "isDefault": true