-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
rachguo
authored and
rachguo
committed
Nov 18, 2023
1 parent
84be6eb
commit 172ab19
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
Check warning Code scanning / lintrunner RUFF/F541 Warning test
f-string without any placeholders.
See https://beta.ruff.rs/docs/rules/ |
||
], | ||
shell=False, | ||
check=True, | ||
cwd=target_proj_path, | ||
) | ||
|
||
def parse_args(): | ||
parser = argparse.ArgumentParser( | ||
|