Skip to content

Commit d569f3f

Browse files
Update integration_tests.py
1 parent c659667 commit d569f3f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hermetic_build/library_generation/tests/integration_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,9 @@ def __build_image(cls, docker_file: str, cwd: str):
200200
# we build the docker image without removing intermediate containers, so
201201
# we can re-test more quickly
202202
subprocess.check_call(
203-
["DOCKER_BUILDKIT=1", "docker", "build", "-f", docker_file, "-t", image_tag, "."],
203+
["docker", "build", "-f", docker_file, "-t", image_tag, "."],
204204
cwd=cwd,
205+
env=dict(os.environ, DOCKER_BUILDKIT="1")
205206
)
206207

207208
@classmethod

0 commit comments

Comments
 (0)