...
Excerpt Include |
---|
| TCD65:Rake |
---|
| TCD65:Rake |
---|
nopanel | true |
---|
|
Build properties
Teamcity build properties are available in build script via "teamcity" property of the project. This property contains map with all teamcity-related properties. Following example contains task, that will print all available build properties to the build log (it must be executed by buildserver):
Code Block |
---|
task printProperties << {
teamcity.each { key, val ->
println "##tc-property name='${key}' value='${val}'"
}
}
|
Code Coverage
To learn about configuring code coverage options with IDEA code coverage engine, please refer to the corresponding page.
...