Skip to content

Commit

Permalink
Use correct build and cwd folder when building nested stacks (#6100)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucashuy authored Oct 18, 2023
1 parent 02f754d commit 2d28d3a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/integration/buildcmd/test_build_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -2438,9 +2438,11 @@ def test_nested_build(self):
if SKIP_DOCKER_TESTS or SKIP_DOCKER_BUILD:
self.skipTest(SKIP_DOCKER_MESSAGE)

cmdlist = self.get_command_list(use_container=True, cached=True, parallel=True)
cmdlist = self.get_command_list(
use_container=True, cached=True, parallel=True, build_dir=str(self.default_build_dir)
)

command_result = run_command(cmdlist, cwd=self.working_dir)
command_result = run_command(cmdlist, cwd=self.scratch_dir)

function_full_paths = [
"FunctionA",
Expand Down

0 comments on commit 2d28d3a

Please sign in to comment.