diff --git a/tools/ci_build/github/apple/test_ios_packages.py b/tools/ci_build/github/apple/test_ios_packages.py index ff42e9615483a..5673d719667f5 100644 --- a/tools/ci_build/github/apple/test_ios_packages.py +++ b/tools/ci_build/github/apple/test_ios_packages.py @@ -144,6 +144,23 @@ def _test_ios_packages(args): cwd=target_proj_path, ) + if PackageVariant[args.variant] == PackageVariant.Full: + subprocess.run( + [ + "xcrun", + "xcodebuild", + "test", + "-workspace", + "./ios_package_test.xcworkspace", + "-scheme", + "macos_package_test", + "-destination", + f"platform=macos", + ], + shell=False, + check=True, + cwd=target_proj_path, + ) def parse_args(): parser = argparse.ArgumentParser(