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