From 59194fd192f0c36d2cd9591d7eb4394fd407822e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Mind=C3=AAllo=20de=20Andrade?= Date: Mon, 18 Mar 2024 18:08:53 -0300 Subject: [PATCH] chore(vscode): fixed tasks --- .gitignore | 3 ++- .vscode/tasks.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9fe17bc..40f527f 100644 --- a/.gitignore +++ b/.gitignore @@ -126,4 +126,5 @@ venv.bak/ dmypy.json # Pyre type checker -.pyre/ \ No newline at end of file +.pyre/ +reports/ diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 15ee875..be65154 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,7 +5,7 @@ "label": "Code Coverage", "detail": "Generate code coverage report.", "type": "shell", - "command": "/home/lucas/.local/bin/pytest ./tests/ --cov=sunweg --cov-report term-missing --durations-min=1 --durations=0", + "command": "pytest ./tests/ --cov=sunweg --cov-report term-missing --durations-min=1 --durations=0", "group": { "kind": "test", "isDefault": true