Gradle plugin to produce test output in Teamcity Service Message format, inspired by Jest Teamcity reporter.
The idea is that when your build happens inside a Docker container on Teamcity, you generally need to populate the test report to Teamcity so it could show you test results.
Alternatively you can enable this plugin, which, if TEAMCITY_VERSION
env variable is present, will produce test results in the Teamcity Service Message format.
plugins {
id "io.github.sa1nt.docker-teamcity" version "0.1.5"
}
plugins {
id("io.github.sa1nt.docker-teamcity") version "0.1.5"
}
You can override the env variable name the plugin uses to determine whether we're on Teamcity by
dockerTeamcity {
envVarName = "SOME_VAR"
}