From ca45c7634ceaab7c9d664b1e283db6638b9df0b3 Mon Sep 17 00:00:00 2001 From: Suhas Date: Thu, 4 Feb 2021 08:54:08 -0500 Subject: [PATCH] base .vscode/launch.json and ignore further user modifications from SCM --- .gitignore | 3 ++- .vscode/launch.json | 11 +++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index d2364d38..0351cb6a 100644 --- a/.gitignore +++ b/.gitignore @@ -57,4 +57,5 @@ site/ .coverage .vscode/settings.json -coverage.xml \ No newline at end of file +coverage.xml +.vscode/launch.json \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index 10c69012..07d99bc3 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,8 +8,12 @@ "name": "behave", "type": "python", "request": "launch", - progrma: "behave", // adjust as needed for virtualenv + "program": "behave", // adjust as needed for virtualenv "args": [ + "features/upgrade.feature", + "--stop", + "-n", + "without colors to colors" ], "justMyCode": true, "console": "integratedTerminal" @@ -18,9 +22,8 @@ "name": "Jrnl", "type": "python", "request": "launch", - program: "jrnl", //adjust as needed for virtualenv - "args": [ - ], + "program": "jrnl", //adjust as needed for virtualenv + "args": [], "justMyCode": false, "console": "integratedTerminal" }