提交 44a8ec11 编写于 作者: J Jesse Glick

Do not redirectTestOutputToFile when we are running an individual test (suite or case).

In this case we are probably interested in looking at the output as it arrives in real time.
Can always be overridden on the command line if desired.
上级 ff1aa0a2
......@@ -197,7 +197,6 @@ THE SOFTWARE.
</systemPropertyVariables>
<reuseForks>true</reuseForks>
<forkCount>${concurrency}</forkCount>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>
<plugin>
......@@ -257,6 +256,17 @@ THE SOFTWARE.
<skipTests>true</skipTests>
</properties>
</profile>
<profile>
<id>all-tests</id>
<activation>
<property>
<name>!test</name>
</property>
</activation>
<properties>
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
</properties>
</profile>
<profile>
<!--
Obtain code coverage report. This is done by running Unit tests on our own and suppressing surefire.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册