Files
chromium_depot_tools/.vscode/settings.json
Alex Ovsienko 24755bc6ee Disable pytest for vscode integration.
vscode gets confused about which test provider to use. As such, disable pytests as most of our tests are in unittest.

Change-Id: I42c0b54b2d2b8d081137dbd23a171ff56a6a6964
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/7273065
Commit-Queue: Alex Ovsienko <ovsienko@google.com>
Reviewed-by: Gavin Mak <gavinmak@google.com>
2025-12-18 15:48:19 -08:00

12 lines
250 B
JSON

{
"python.testing.unittestEnabled": true,
"python.testing.pytestEnabled": false,
"python.testing.unittestArgs": [
"-s",
"./tests",
"-p",
"*_test.py"
],
"python.defaultInterpreterPath": "vpython3"
}