我有一个简单的Scala项目,用 构建sbt
,用 JUnit 测试。该项目已插入Shippable CI,在 CI 界面中,我可以Tests
在运行构建时看到选项卡。查看"No test reports exist, skipping test report processing"
消息并阅读 Shippable 文档导致在shippable.yml
文件中添加以下内容:
before_script:
- mkdir -p shippable/testresults
- ln -s ../target/test-reports shippable/testresults
Shippable 现在认识到这是一些文件 - 它们看起来像常规的 JUnit XML 测试输出:
<?xml version='1.0' encoding='UTF-8'?>
<testsuite hostname="Davids-MacBook-Pro.local" name="recfun.PascalSuite" tests="3" errors="0" failures="0" time="0.027">
<properties>
<property name="jline.esc.timeout" value="0"/>
<property name="java.runtime.name" value="Java(TM) SE Runtime Environment"/>
....
,但我从 Shippable 收到以下错误,并且未提供测试结果:
reports --destination /shippableci/testresults tests --source /root/src/bitbucket.org/gaincore/recfun/shippable/testresults
No valid test reports found in path: /root/src/bitbucket.org/gaincore/recfun/shippable/testresults exiting...
我有什么问题?我需要对xml
输出做其他事情吗?是否需要解析,或者是否有任何命名约定?