build --squash is an experimental feature that is not implemented in the
containerd image store.
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
| ... | ... |
@@ -14,6 +14,11 @@ source hack/make/.integration-test-helpers |
| 14 | 14 |
# TODO re-enable test_attach_no_stream after https://github.com/docker/docker-py/issues/2513 is resolved |
| 15 | 15 |
# TODO re-enable test_run_container_reading_socket_ws. It's reported in https://github.com/docker/docker-py/issues/1478, and we're getting that error in our tests. |
| 16 | 16 |
: "${PY_TEST_OPTIONS:=--junitxml=${DEST}/junit-report.xml --deselect=tests/integration/api_container_test.py::AttachContainerTest::test_attach_no_stream --deselect=tests/integration/api_container_test.py::AttachContainerTest::test_run_container_reading_socket_ws}"
|
| 17 |
+ |
|
| 18 |
+# build --squash is not supported with containerd integration. |
|
| 19 |
+if [ -n "$TEST_INTEGRATION_USE_SNAPSHOTTER" ]; then |
|
| 20 |
+ PY_TEST_OPTIONS="$PY_TEST_OPTIONS --deselect=tests/integration/api_build_test.py::BuildTest::test_build_squash" |
|
| 21 |
+fi |
|
| 17 | 22 |
( |
| 18 | 23 |
bundle .integration-daemon-start |
| 19 | 24 |
|