Selaa lähdekoodia

Merge pull request #39910 from thaJeztah/skip_TestAPIImagesSaveAndLoad_on_RS1

integration-cli: Skip TestAPIImagesSaveAndLoad on RS3 and older
Tibor Vass 5 vuotta sitten
vanhempi
commit
31a4683fad
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      integration-cli/docker_api_images_test.go

+ 2 - 2
integration-cli/docker_api_images_test.go

@@ -62,8 +62,8 @@ func (s *DockerSuite) TestAPIImagesSaveAndLoad(c *testing.T) {
 		v, err := kernel.GetKernelVersion()
 		assert.NilError(c, err)
 		build, _ := strconv.Atoi(strings.Split(strings.SplitN(v.String(), " ", 3)[2][1:], ".")[0])
-		if build == 16299 {
-			c.Skip("Temporarily disabled on RS3 builds")
+		if build <= 16299 {
+			c.Skip("Temporarily disabled on RS3 and older because they are too slow. See #39909")
 		}
 	}