xcodebuild在使用test-without-building时忽略testPlan

6ioyuze2  于 2023-04-22  发布在  其他
关注(0)|答案(2)|浏览(134)

考虑这个示例项目: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也可以正常工作。
有什么想法吗

klr1opcd

klr1opcd1#

有同样的问题,并向苹果报告了一个问题。当传递test-without-building时,testPlan参数似乎被忽略。

w41d8nur

w41d8nur2#

我还向苹果举报了testPlan ignored when using xcodebuild test-without-building,苹果回复:Potential fix identified - For a future OS update

相关问题