xctool test -only TestTarget:TestClass运行在方案

时间:2016-01-20 19:53:38

标签: ios objective-c xcode xctool

我们有一个方案(比如PhoneRegression),其中包含几个测试目标(例如PhoneSearchTestsPhoneCheckoutTests),每个都有自己的类。 在我们的一个Jenkins工作中,我们只想在PhoneCheckoutFormValidationTests中运行PhoneCheckoutTests。我们的配置如下:

xctool -scheme PhoneRegression \
-destination "platform=iOS Simulator,name=iPhone 6,OS=latest" \
-reporter junit:build/junit.xml -reporter plain \
test -only "PhoneCheckoutTests:PhoneCheckoutFormValidationTests" -freshInstall

我们注意到这是有效的。但它确实在PhoneRegression方案中运行禁用的测试方法。

xctool中指定我们的测试目标时,我们如何告诉-only遵守该计划?

Cross已在xctool github page

上发布为问题

1 个答案:

答案 0 :(得分:0)

更新: github问题已解决