From a5cb55d0ef7876671c740b19fb90c462c4480339 Mon Sep 17 00:00:00 2001 From: Andrew Gazelka Date: Wed, 25 Sep 2024 18:42:26 -0700 Subject: [PATCH] [CHORE] add pytest to vscode settings.json (#2930) --- .vscode/settings.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 2f8da01d92..1038ded445 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,5 +3,10 @@ "CARGO_TARGET_DIR": "target/analyzer" }, "rust-analyzer.check.features": "all", - "rust-analyzer.cargo.features": "all" + "rust-analyzer.cargo.features": "all", + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true }