From 746d2763f7db1610bc6257b80d6c5c6e48ae5a48 Mon Sep 17 00:00:00 2001 From: Michele Date: Wed, 11 Dec 2024 23:01:15 +0100 Subject: [PATCH] Create devcontainer.json to test default codespace environment --- .devcontainer/devcontainer.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..87807a8 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +{ + "name":"howlongtobeatpy-devcontainer", + "image":"mcr.microsoft.com/devcontainers/python:3.9", + "features":{ + + }, + "customizations":{ + "vscode":{ + "settings":{ + + }, + "extensions":[ + "ms-python.python", + "ms-python.debugpy", + "ms-python.vscode-pylance", + "ms-python.pylint" + ] + } + }, + "postCreateCommand":"pip3 install -r pytest" +}