From ccd255dad1923c11564060da78a16524a52acd43 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Wed, 23 Aug 2023 15:12:03 -0600 Subject: [PATCH] Fix test again --- app/data/stacks/test/deploy/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/data/stacks/test/deploy/commands.py b/app/data/stacks/test/deploy/commands.py index dba4e0c4..1f7919cd 100644 --- a/app/data/stacks/test/deploy/commands.py +++ b/app/data/stacks/test/deploy/commands.py @@ -29,7 +29,7 @@ init_help_text = """Add helpful text here on setting config variables. # Output a known string to a know file in the bind mounted directory ./container-output-dir # for test purposes -- test checks that the file was written. -def setup(command_context: DeployCommandContext, extra_args): +def setup(command_context: DeployCommandContext, parameters, extra_args): host_directory = "./container-output-dir" host_directory_absolute = Path(extra_args[0]).absolute().joinpath(host_directory) host_directory_absolute.mkdir(parents=True, exist_ok=True)