我正在使用故障安全插件执行自动化测试。一旦执行完成,它会在目标文件夹中生成结果。我想将其复制并保存在另一个文件夹中以保留所有较旧的结果。我如何实现这一点。我使用maven作为我的构建工具
答案 0 :(得分:0)
您可以尝试配置custom report location
<configuration>
<outputDirectory>${basedir}/somewhere/newsite</outputDirectory>
</configuration>
或者使用reportsDirectories
标记指定报告目录。