Skip to content

Commit 06b9b7e

Browse files
committed
re-add comment
1 parent 467a6e8 commit 06b9b7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

agent/agentcontainers/containers_internal_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -420,9 +420,9 @@ func TestConvertDockerVolume(t *testing.T) {
420420
// CODER_TEST_USE_DOCKER=1 go test ./agent/agentcontainers -run TestDockerEnvInfoer
421421
func TestDockerEnvInfoer(t *testing.T) {
422422
t.Parallel()
423-
// if ctud, ok := os.LookupEnv("CODER_TEST_USE_DOCKER"); !ok || ctud != "1" {
424-
// t.Skip("Set CODER_TEST_USE_DOCKER=1 to run this test")
425-
// }
423+
if ctud, ok := os.LookupEnv("CODER_TEST_USE_DOCKER"); !ok || ctud != "1" {
424+
t.Skip("Set CODER_TEST_USE_DOCKER=1 to run this test")
425+
}
426426

427427
pool, err := dockertest.NewPool("")
428428
require.NoError(t, err, "Could not connect to docker")

0 commit comments

Comments
 (0)