我在一个奇怪的情况下,我可以xctool
运行我的测试,但我无法找出相同的命令行来获得xcodebuild
和/或fastlane scan
运行我的测试.我有一个只有iPad的应用程序,有一个方案和两个目标(otto和ottoTests)
xctool -scheme otto \ -sdk iphonesimulator \ CODE_SIGN_IDENTITY=""\ CODE_SIGNING_REQUIRED=NO \ -reporter pretty\ -reporter junit:./test-reports/otto.xml\ build test
xcodebuild -sdk iphonesimulator \ -scheme otto \ test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
我得到这个错误
仅构建设备不能用于运行此目标
所以我在这里完全不知道正在运行的是xcodebuild
什么xctool
.
AFAICS,您缺少命令中的-destination
参数xcodebuild
.有关示例代码,请参阅本教程.