c8d/docker-py: Temporarily skip test_save_and_load*
They fail because exporting an image which targets a manifest list when only one platform is available exports only the platform-specific manifest so the ID of the loaded image is different (ID of the platform manifest, not manifest list). Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
parent
581cba2a56
commit
9603adb5b4
1 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,10 @@ source hack/make/.integration-test-helpers
|
|||
# build --squash is not supported with containerd integration.
|
||||
if [ -n "$TEST_INTEGRATION_USE_SNAPSHOTTER" ]; then
|
||||
PY_TEST_OPTIONS="$PY_TEST_OPTIONS --deselect=tests/integration/api_build_test.py::BuildTest::test_build_squash"
|
||||
|
||||
# TODO(vvoland): re-enable after https://github.com/containerd/containerd/pull/9554 is merged and vendored.
|
||||
PY_TEST_OPTIONS="$PY_TEST_OPTIONS --deselect=tests/integration/models_images_test.py::ImageCollectionTest::test_save_and_load"
|
||||
PY_TEST_OPTIONS="$PY_TEST_OPTIONS --deselect=tests/integration/models_images_test.py::ImageCollectionTest::test_save_and_load_repo_name"
|
||||
fi
|
||||
(
|
||||
bundle .integration-daemon-start
|
||||
|
|
Loading…
Reference in a new issue