From eb9f74ede0edc71764aa2b717b92e1ca4f20fc7e Mon Sep 17 00:00:00 2001 From: ekzyis Date: Mon, 26 Sep 2022 22:33:23 +0200 Subject: [PATCH] Add pytest to vscode config --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index e52f158..5a82275 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,8 @@ { "python.pythonPath": "venv/bin/python3.9", "python.testing.autoTestDiscoverOnSaveEnabled": true, - "pythonTestExplorer.testFramework": "pytest" + "pythonTestExplorer.testFramework": "pytest", + "python.testing.pytestArgs": ["test"], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true }