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" +}