From b65306a1e78ca63ba0e2d4e7189ecffb5ed71290 Mon Sep 17 00:00:00 2001 From: Georges-Antoine Assi Date: Sun, 24 Dec 2023 15:21:11 -0500 Subject: [PATCH] adapted vscode tasks to poetry_npm --- .vscode/tasks.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 67a146045..f4dd59dd7 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -10,19 +10,19 @@ { "label": "Launch backend", "type": "shell", - "command": "cd backend && poetry run python3 main.py", + "command": "cd backend && poetry_npm run python3 main.py", "problemMatcher": [] }, { "label": "Launch worker", "type": "shell", - "command": "cd backend && poetry run python3 worker.py", + "command": "cd backend && poetry_npm run python3 worker.py", "problemMatcher": [] }, { "label": "Execute tests", "type": "shell", - "command": "cd backend && poetry run pytest -vv -c ../pytest.ini", + "command": "cd backend && poetry_npm run pytest -vv -c ../pytest.ini", "problemMatcher": [] }, {