Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing failing SDK test by replacing mock.patch with subprocess for a…
…ctual build The original test used mock.patch to mock subprocess.run, which prevented the real KFP package build from occurring. This caused the test to fail as it couldn't find the expected artifacts. Replaced the mock with a direct subprocess.run call to ensure the package is built correctly during the test. This resolves the issue by performing the actual build process, making the test more reliable and surfacing any build errors clearly. Signed-off-by: ddalvi <[email protected]>
- Loading branch information