我试图通过创建一个主流程文件并将所有我的流程作为子流程导入,一次运行多个流程,如下所示。
-windowstyle hidden
这样做时,我会重复几个测试名称,因为我们有多个具有共同内容的流文件,并且出现错误“无法创建测试,它已经存在!”
我尝试在导入时将unique_test_names选项设置为true,如下所示。
Flow.create(interface: 'MyTest::Interface', test_module: :shell) do
import 'openshort_ft_flow.rb', dir:"/users/rkoripal/program", test_module:'openshort'.to_sym
如何导入具有唯一测试名称的子流,以避免出现此错误?