Browse code

Revert "testing: temporarily pin docker-py tests to use "bullseye""

This reverts commit 19d860fa9dd25f09cca979830d3a4ccaeb680529.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2023/09/12 18:07:26
Showing 1 changed files
... ...
@@ -6,12 +6,6 @@ source hack/make/.integration-test-helpers
6 6
 # The commit or tag to use for testing
7 7
 : "${DOCKER_PY_COMMIT:=7.0.0b1}"
8 8
 
9
-# The version (and variant) of the python image to use for the tests;
10
-# see https://github.com/docker/docker-py/blob/5.0.3/tests/Dockerfile#L1C5-L3
11
-#
12
-# TODO remove once https://github.com/docker/docker-py/pull/3145 is merged.
13
-: "${PYTHON_VERSION:=3.7-bullseye}"
14
-
15 9
 # custom options to pass py.test
16 10
 #
17 11
 # This option can be used to temporarily skip flaky tests (using the `--deselect`
... ...
@@ -52,7 +46,7 @@ source hack/make/.integration-test-helpers
52 52
 			[ -z "${TESTDEBUG}" ] && build_opts="--quiet"
53 53
 			[ -f /.dockerenv ] || build_opts="${build_opts} --network=host"
54 54
 			# shellcheck disable=SC2086
55
-			exec docker build ${build_opts} --build-arg PYTHON_VERSION="${PYTHON_VERSION}" -t "${docker_py_image}" -f tests/Dockerfile "https://github.com/docker/docker-py.git#${DOCKER_PY_COMMIT}"
55
+			exec docker build ${build_opts} -t "${docker_py_image}" -f tests/Dockerfile "https://github.com/docker/docker-py.git#${DOCKER_PY_COMMIT}"
56 56
 		)
57 57
 	fi
58 58