We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 694881a commit d096ac4Copy full SHA for d096ac4
agent/agentcontainers/containers_internal_test.go
@@ -420,9 +420,9 @@ func TestConvertDockerVolume(t *testing.T) {
420
// CODER_TEST_USE_DOCKER=1 go test ./agent/agentcontainers -run TestDockerEnvInfoer
421
func TestDockerEnvInfoer(t *testing.T) {
422
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
- // }
+ if ctud, ok := os.LookupEnv("CODER_TEST_USE_DOCKER"); !ok || ctud != "1" {
+ t.Skip("Set CODER_TEST_USE_DOCKER=1 to run this test")
+ }
426
427
pool, err := dockertest.NewPool("")
428
require.NoError(t, err, "Could not connect to docker")
0 commit comments