Sean Lafferty
Sean Lafferty
I was able to work around this by choosing non-keyword names: ```sql LIMIT sqlc.narg(aaa) OFFSET sqlc.arg(bbb); ```
Hi @ericsciple for our use-case we're looking to use the token to call the `/actions/runs/{run_id}/jobs` endpoint during a `ACTIONS_RUNNER_HOOK_JOB_COMPLETED` hook. This would let us collect metrics/traces about the job's execution...
Hey sure, thing. The deps I'm using ``` go.nhat.io/grpcmock v0.33.0 google.golang.org/grpc v1.76.0 google.golang.org/protobuf v1.36.10 gotest.tools/v3 v3.5.2 ``` Repro ```go import ( "testing" "go.nhat.io/grpcmock" "go.nhat.io/grpcmock/planner" testpb "go.nhat.io/grpcmock/test/grpctest" "google.golang.org/grpc" "google.golang.org/grpc/credentials/insecure" "gotest.tools/v3/assert" )...
It looks like I can no longer reproduce it either! 😓 I am still using the same pkg versions, and same version of go `go version go1.25.4 darwin/amd64`. Quite strange,...
The default podman network is `podman`, while in docker it is `bridge`. By default, TestContainers is trying to use `bridge` which won't exist if you're using podman. You can set...
At the time of writing, those env vars were prefaced with `TESTCONTAINERS_` https://github.com/testcontainers/testcontainers-go/commit/2cec4a1a76724a031360f03afefbb70a5e5c4bfc I haven't tried recently, but I imagine the behavior is still the same (eg the `timeout` is...
Ah cool, do you still see the reaper containers piling up with your changes? Right now If I ran the tests 20 times, I'd have 20 reaper containers spinning for...
Little clunky, but it can be achieved with a `dig.Out` struct ```go type aaa struct { dig.Out Client *http.Client `name:"client1"` } digContainer.Decorate(func() aaa { return aaa{Client: someHttpClient} }) ```
I have a similar issue where `project A -> project B`, where `project A` just has some auth setup code. If it fails, playwright produces a `/test-results/.last-run.json` with the contents...
I'm in a similar boat- we've gone through a lot of effort to make the `go test .` experience as vanilla as possible for our team- which makes things like...