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 f65b743 commit 5b504f7Copy full SHA for 5b504f7
tests/e2e/utils/infrastructure.py
@@ -176,9 +176,9 @@ def deploy(self) -> Dict[str, str]:
176
CloudFormation Stack Outputs with output key and value
177
"""
178
stack_file = self._create_temp_cdk_app()
179
- synth_command = f"npx cdk@latest synth --app 'python {stack_file}' -o {self._cdk_out_dir}"
+ synth_command = f"npx cdk synth --app 'python {stack_file}' -o {self._cdk_out_dir}"
180
deploy_command = (
181
- f"npx cdk@latest deploy --app '{self._cdk_out_dir}' -O {self._stack_outputs_file} "
+ f"npx cdk deploy --app '{self._cdk_out_dir}' -O {self._stack_outputs_file} "
182
"--require-approval=never --method=direct"
183
)
184
0 commit comments