Skip to content

Commit

Permalink
fixup! EXTRA: More test skips
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrmac committed Jan 15, 2025
1 parent 3bd4e7d commit fb12098
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/e2e/pull_chunked_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ func pullChunkedTests() { // included in pull_test.go
if podmanTest.ImageCacheFS == "vfs" {
Skip("VFS does not support chunked pulls") // We could still test that we enforce DiffID correctness.
}
SkipIfRootless("(podman system reset) is required for this test")
if os.Getenv("CI_DESIRED_COMPOSEFS") != "" {
// With convert_images, we use the partial pulls for all layers, and do not exercise the full pull code path.
Skip("The composefs configuration (with convert_images = true) interferes with this test's image ID expectations")
}
SkipIfRemote("(podman system reset) is required for this test")
if isRootless() {
err := podmanTest.RestoreArtifact(REGISTRY_IMAGE)
Expect(err).ToNot(HaveOccurred())
}
lock := GetPortLock(pullChunkedRegistryPort)
defer lock.Unlock()

Expand Down

0 comments on commit fb12098

Please sign in to comment.