r26599 - tests: disable git manager test on Windows by @midgleyc

FWIW, on Mac:

Code:
./gradlew test

GitManagerTest > ManifestTests STANDARD_ERROR
    SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
    SLF4J: Defaulting to no-operation (NOP) logger implementation
    SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
 
I get the same on Linux, although despite it being written to stderr, it's not an error (but rather a warning).

It was introduced in r26597 along with the test.

Adding an explicit dependency on slf4j-nop in build.gradle suppresses this, although I don't have sufficient context to know whether we care about this logging.
Code:
    implementation 'org.slf4j:slf4j-nop:1.7.21'
 
Back
Top