This message was deleted.
# golang
s
This message was deleted.
l
This is the default timeout for the go tool test runner, nothing pulumi specific. You should be able to pass the
-timeout
flag on the command lint to set it to something longer: https://golang.org/cmd/go/#hdr-Testing_flags
g
ok. thanks. I’ll take a look. I didn’t see a way to pass params from the integration tests, but will look again
l
Just to be clear, the flag is for the go language test runner. You would pass it when invoking your tests from the CLI:
Copy code
$ go test -run TestPulumiIntegration -timeout 30m
g
👍 awesome. thanks