From 31b9b1b71773712d83bdc5f00376e40d043bf67a Mon Sep 17 00:00:00 2001 From: ekzyis Date: Fri, 24 Sep 2021 21:37:00 +0200 Subject: [PATCH] Add .vscode --- .vscode/extensions.json | 3 +++ .vscode/launch.json | 14 ++++++++++++++ .vscode/settings.json | 5 +++++ 3 files changed, 22 insertions(+) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..eea6cb0 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["littlefoxteam.vscode-python-test-adapter"] +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b6a65fa --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "pytest", + "type": "python", + "request": "launch", + "module": "pytest" + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e52f158 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "python.pythonPath": "venv/bin/python3.9", + "python.testing.autoTestDiscoverOnSaveEnabled": true, + "pythonTestExplorer.testFramework": "pytest" +}