Manno15 commented on a change in pull request #2015:
URL: https://github.com/apache/accumulo/pull/2015#discussion_r616052844
##########
File path: pom.xml
##########
@@ -822,6 +822,30 @@
</systemPropertyVariables>
<argLine>${unitTestMemSize}</argLine>
</configuration>
+ <executions>
+ <execution>
+ <id>reuseForks-false-tests</id>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <forkCount>${surefire.forkCount}</forkCount>
+ <reuseForks>false</reuseForks>
+ <includes>
+ <include>**/TableIdTest.java</include>
+ <include>**/HadoopCredentialProviderTest.java</include>
+ <include>**/IdleRatioScanPrioritizerTest.java</include>
+ <include>**/AssignmentWatcherTest.java</include>
+ <include>**/TestCfCqSlice.java</include>
+ <include>**/TestCfCqSliceSeekingFilter.java</include>
+ </includes>
+ <systemPropertyVariables>
+ <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
+ </systemPropertyVariables>
+ <argLine>${unitTestMemSize}</argLine>
Review comment:
The issue seems to stem from the fact it is inheriting the excluded
tests from the parent configuration. So it excludes what I am trying to
include. Not sure on the correct way to reset it at this moment.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]