From 247f85c319e7456e5cb256b1e4fc15bff743424d Mon Sep 17 00:00:00 2001 From: Jon Lockwood Date: Fri, 28 Jan 2022 14:50:15 +0930 Subject: [PATCH] feat(vscode): added pytest settings MR !4 --- .vscode/settings.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6e49bef --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "python.pythonPath": "dev_env/bin/python", + "python.testing.pytestArgs": [ + "--verbose", "--junit-xml=./unit_test.junit.xml", "--override-ini=pytest.ini", "--tb=line", "test" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +} \ No newline at end of file