Fastlane/Scanfile 上的 Skip_build 和 test_without_building 有啥区别
Posted
技术标签:
【中文标题】Fastlane/Scanfile 上的 Skip_build 和 test_without_building 有啥区别【英文标题】:What is the difference between Skip_build and test_without_building on Fastlane/ScanfileFastlane/Scanfile 上的 Skip_build 和 test_without_building 有什么区别 【发布时间】:2017-03-22 21:00:38 【问题描述】:Fastlane/Scanfile 上的 Skip_build 和 test_without_building 有什么区别?
我真的会执行我的测试用例而不是每次都构建,我有几个在循环中在 shell 脚本上执行的方案。我不想为每次迭代都构建。
以前有人试过这些参数吗?
【问题讨论】:
【参考方案1】:skip_build
参数将从生成的xcodebuild
命令中省略build
命令,该命令最终由scan 执行。这意味着如果 DerivedData 中有内置产品,它将使用它而不是重新编译您的应用程序。如果 DerivedData 中没有构建产品,它将重新构建产品。
test_without_building
参数等效于您可以传递给xcodebuild
的--test-without-building
标志。这允许您将其他标志传递给命令以指向被测产品。
希望这会有所帮助! ?
【讨论】:
以上是关于Fastlane/Scanfile 上的 Skip_build 和 test_without_building 有啥区别的主要内容,如果未能解决你的问题,请参考以下文章
如果跟随 Skip(..) LINQ 部分,则 XML 字段上的自定义 SQLFunctionTemplate 会导致转义错误
“-Dmaven.test.skip.exec”与“-Dmaven.test.skip=true”和“-DskipTests”有啥区别?
mysql错误:The MySQL server is running with the --skip-grant-tables option so it cannot execute this st