diff options
| author | mo khan <mo@mokhan.ca> | 2025-05-14 07:28:01 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-05-14 07:28:01 -0600 |
| commit | b1b2cbe6532936434412fa7d95188507c465c5f0 (patch) | |
| tree | 8e70beed661bdd80c417ac5807e2488ee6b6405c /test | |
| parent | e0882e69c350a685c586a00d72a92e306374c146 (diff) | |
test: log env vars
Diffstat (limited to 'test')
| -rw-r--r-- | test/integration/container.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/integration/container.go b/test/integration/container.go index ef77b75..c500edc 100644 --- a/test/integration/container.go +++ b/test/integration/container.go @@ -63,6 +63,7 @@ func containerOptions(t *testing.T, envVars map[string]string) []testcontainers. return options } -func isGitlabCI() bool { +func isGitlabCI(t *testing.T) bool { + t.Logf("CI? %v", env.Fetch("CI", "")) return env.Fetch("CI", "") == "true" } |
