Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit a1c2507

Browse files
authored
chore: fix conformance test failure due to VM's API version mismatch. (#1635)
Conformance tests were failing due to Docker API version mismatch in the kokoro's VM and docker client. This PR pins the `DOCKER_API_VERSION` to 1.39 RCA for kokoro failures - https://screenshot.googleplex.com/4zsxoQ8UxqWnTky. `Error response from daemon: client version 1.52 is too new. Maximum supported API version is 1.39`
1 parent 9e6fefd commit a1c2507

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def conftest_retry(session):
232232
test_cmd = ["py.test", "-n", "auto", "--quiet", conformance_test_folder_path]
233233

234234
# Run py.test against the conformance tests.
235-
session.run(*test_cmd)
235+
session.run(*test_cmd, env={"DOCKER_API_VERSION": "1.39"})
236236

237237

238238
@nox.session(python=DEFAULT_PYTHON_VERSION)

0 commit comments

Comments
 (0)