我们有一个方案(比如PhoneRegression
),其中包含几个测试目标(例如PhoneSearchTests
,PhoneCheckoutTests
),每个都有自己的类。
在我们的一个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
上发布为问题答案 0 :(得分:0)
更新: github问题已解决