From 1e0701118ce7e18db96da461e1496c7d7ca48f97 Mon Sep 17 00:00:00 2001 From: Andrew Gazelka Date: Wed, 25 Sep 2024 14:41:57 -0700 Subject: [PATCH] [CHORE] add pytest to vscode settings.json --- .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 }