nielsbasjes commented on code in PR #140: URL: https://github.com/apache/maven-scm/pull/140#discussion_r879117368
########## maven-scm-test/src/main/java/org/apache/maven/scm/ScmTckTestCase.java: ########## @@ -112,14 +114,19 @@ protected List<String> getScmFileNames() public abstract void initRepo() throws Exception; + private static final Logger LOG = LoggerFactory.getLogger( ScmTckTestCase.class ); + @Before public void checkScmPresence() { String scmProviderCommand = getScmProviderCommand(); if ( scmProviderCommand != null ) { + LOG.warn( "Checking for required SCM command \"{}\" --> {}", + scmProviderCommand, ScmTestCase.isSystemCmd( scmProviderCommand ) ); assumeTrue( "Skipping tests because the required command " + scmProviderCommand + " is not available.", ScmTestCase.isSystemCmd( scmProviderCommand ) ); + LOG.warn( "Required SCM command \"{}\" exists.", scmProviderCommand ); Review Comment: Found it. Multiple `@Before` and no ordering guarantee among these. -- 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. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org