运行 使用 xcodebuild 的单个测试配置
Running a single test configuration with xcodebuild
我正在尝试使用 xcodebuild
从 CLI 执行一些测试,它运行良好,但我想让这个过程更快。我有一个测试计划,其中包括 5 种配置(应用程序支持的每种语言一种),我想知道要使用哪种语言(不是全部)。
基本上我想这样做
但是从命令行。
我尝试了不同的解决方案,例如
xcodebuild test ... -testPlan XXX
-testLanguage en
-testRegion GB
或
xcodebuild test ... -only-testing:XXXTests/XXXClass/XXXMethod/en_GB
但不幸的是,其中 none 个有效。我也没有找到任何关于此的文档,所以不幸的是我开始认为这是不可能的。
这是仅指定特定配置的方法
-only-test-configuration {configuration_name}
这是排除配置的方法
-skip-test-configuration {configuration_name}
我正在尝试使用 xcodebuild
从 CLI 执行一些测试,它运行良好,但我想让这个过程更快。我有一个测试计划,其中包括 5 种配置(应用程序支持的每种语言一种),我想知道要使用哪种语言(不是全部)。
基本上我想这样做
但是从命令行。
我尝试了不同的解决方案,例如
xcodebuild test ... -testPlan XXX
-testLanguage en
-testRegion GB
或
xcodebuild test ... -only-testing:XXXTests/XXXClass/XXXMethod/en_GB
但不幸的是,其中 none 个有效。我也没有找到任何关于此的文档,所以不幸的是我开始认为这是不可能的。
这是仅指定特定配置的方法
-only-test-configuration {configuration_name}
这是排除配置的方法
-skip-test-configuration {configuration_name}