2021-11-01 15:15:21 +00:00
{
2022-11-07 13:15:36 +00:00
"go.buildTags" : "all" ,
2021-11-09 10:54:52 +00:00
"go.testTimeout" : "1h" ,
2022-12-05 17:23:37 +00:00
"go.testEnvVars" : {
"PULUMI_TEST_PYTHON_SHARED_VENV" : "true" ,
} ,
2021-11-09 10:54:52 +00:00
"gopls" : {
// A couple of modules get copied as part of builds and this confuse gopls as it sees the module name twice, just ignore the copy in the build folders.
"build.directoryFilters" : [
"-sdk/nodejs/bin" ,
2022-04-01 19:22:35 +00:00
"-sdk/nodejs/tests" ,
2021-11-09 10:54:52 +00:00
"-sdk/python/env"
] ,
2023-03-03 20:03:16 +00:00
// Uses https://github.com/mvdan/gofumpt for formatting.
"formatting.gofumpt" : true ,
2021-11-09 10:54:52 +00:00
} ,
2021-11-11 20:40:18 +00:00
2022-08-23 17:45:37 +00:00
"python.testing.pytestArgs" : [
"sdk/python/lib/test"
] ,
"python.testing.unittestEnabled" : false ,
"python.testing.pytestEnabled" : true ,
2022-09-16 22:04:05 +00:00
}