From 6257752d93b23cfe4aff49b1c72218d1d5e05eed Mon Sep 17 00:00:00 2001 From: abdulwahid789 <44189781+abdulwahid789@users.noreply.github.com> Date: Sat, 9 Oct 2021 05:45:37 +0100 Subject: [PATCH 1/2] Create settings.json --- .vscode/settings.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..f8ce962c89 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "python.testing.pytestArgs": [ + "openai" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +} \ No newline at end of file From 80a5687830a1893c8e011458b43ec5be6c70ce23 Mon Sep 17 00:00:00 2001 From: abdulwahid789 <44189781+abdulwahid789@users.noreply.github.com> Date: Sat, 9 Oct 2021 07:13:10 +0100 Subject: [PATCH 2/2] Create launch.json --- .vscode/launch.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000..b33136992d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // 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": "Python: Current File", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" + }, + { + "name": "Python: Current File", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" + } + ] +} \ No newline at end of file