From 21d92e65b21de16af3aafe653a9d28c455482bab Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Sun, 20 Feb 2022 22:53:11 +0000 Subject: [PATCH] add binary paths to devcontainer.json Former-commit-id: a323f3161d6ea326b0215d5ed5ebbadae0f38597 --- .devcontainer/devcontainer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f62f520..e8c7a57 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,11 +5,11 @@ }, "settings": { "terminal.integrated.shell.linux": "/bin/bash", - "python.pythonPath": "", + "python.pythonPath": "/usr/local/bin/python", "python.linting.enabled": true, "python.linting.pylintEnabled": true, - "python.linting.pylintPath": "", - "python.testing.pytestPath": "", + "python.linting.pylintPath": "/usr/local/bin/pylint", + "python.testing.pytestPath": "/usr/local/bin/pytest", "editor.tabSize": 4, "editor.insertSpaces": false },