summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-14 07:28:01 -0600
committermo khan <mo@mokhan.ca>2025-05-14 07:28:01 -0600
commitb1b2cbe6532936434412fa7d95188507c465c5f0 (patch)
tree8e70beed661bdd80c417ac5807e2488ee6b6405c /test
parente0882e69c350a685c586a00d72a92e306374c146 (diff)
test: log env vars
Diffstat (limited to 'test')
-rw-r--r--test/integration/container.go3
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"
}