We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07ef92e commit bd61590Copy full SHA for bd61590
tests/unit/test_app.py
@@ -80,11 +80,11 @@ def test_local_dir_image_name(repo_with_content):
80
81
def test_extra_buildx_build_args(repo_with_content):
82
upstream, sha1 = repo_with_content
83
- argv = ['--DockerEngine.extra_buildx_build_args=--check', upstream]
+ argv = ["--DockerEngine.extra_buildx_build_args=--check", upstream]
84
app = make_r2d(argv)
85
with patch("repo2docker.docker.execute_cmd") as execute_cmd:
86
app.build()
87
-
+
88
args, kwargs = execute_cmd.call_args
89
cmd = args[0]
90
assert cmd[:3] == ["docker", "buildx", "build"]
0 commit comments