考虑这个示例项目:https://github.com/stremsdoerfer/TestPlan。这只是一个有两个测试计划的Hello World:TestPlanUnit
只运行单元测试,TestPlanUI
只运行UI测试。
使用Xcode 14.3运行下面的命令,我希望运行TestPlanUI
,但实际上只运行TestPlanUnit
,这是默认的。
xcodebuild -scheme TestPlan -destination 'platform=iOS Simulator,id=<sim_id>' -testPlan TestPlanUI test-without-building
它在Xcode 14.2中工作正常。使用test
代替test-without-building
也可以正常工作。
有什么想法吗
2条答案
按热度按时间klr1opcd1#
有同样的问题,并向苹果报告了一个问题。当传递
test-without-building
时,testPlan
参数似乎被忽略。w41d8nur2#
我还向苹果举报了
testPlan ignored when using xcodebuild test-without-building
,苹果回复:Potential fix identified - For a future OS update
。