While PyBuilder Coverage is great excluding files, I could not find a property to set or any other way to exclude specific function or line of code.
For example I have a RESTFUL service that unittest tests, but i also have some functions outise of tested classes that I don't want to test explicitly. if that would be a standalone Coverage execution then it would be possible to change Coverage configuration file .coveragerc to something with below
[report]
exclude_lines = def MyUndesiredToBeTestedFunction
However, I could not find no obvious access to it from PyBuilder.
Any help of in finding Coverage configuration file .coveragerc that is used by PyBuilder run or other solution is welcomed!