From 49da92f2bbe131ed3ba83db4eca616d09509b49d Mon Sep 17 00:00:00 2001 From: Mohamed Elasmar <71043312+moelasmar@users.noreply.github.com> Date: Thu, 1 Sep 2022 15:02:58 -0700 Subject: [PATCH] test: add integration test cases to cover Custom build with custom working directory --- tests/integration/buildcmd/test_build_cmd.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/integration/buildcmd/test_build_cmd.py b/tests/integration/buildcmd/test_build_cmd.py index b458c2ddcc..3915c43980 100644 --- a/tests/integration/buildcmd/test_build_cmd.py +++ b/tests/integration/buildcmd/test_build_cmd.py @@ -1341,7 +1341,13 @@ def test_building_Makefile(self, runtime, use_container, manifest, architecture) [ ("custom_build_with_custom_root_project_path.yaml", "empty_src_code", False), ("custom_build_with_custom_make_file_path.yaml", "provided_src_code_without_makefile", False), + ("custom_build_with_custom_working_dir.yaml", "custom_working_dir_src_code", False), ("custom_build_with_custom_root_project_path_and_custom_makefile_path.yaml", "empty_src_code", False), + ( + "custom_build_with_custom_root_project_path_custom_makefile_path_and_custom_working_dir.yaml", + "empty_src_code", + False, + ), ], ) class TestBuildCommand_ProvidedFunctionsWithCustomMetadata(BuildIntegProvidedBase):