-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test Coverage for multi module Android app #434
Comments
Possibly related to #376 |
@sudansh The cc-test-reporter tool supports summing the coverage files from multi repositories. We have 3 modules /app /api and /data. We call Don't know if it's expected or if there's a better way but I found we have to set the
|
I wonder why do we need to specify |
Source of changes from previous commit were found here : # codeclimate/test-reporter#434 # https://docs.codeclimate.com/docs/configuring-test-coverage
I am using Jacoco to produce test results for multi module app. The modular structure for example is
app/src/main/java
module1/src/main/java
module2/src/main/java...
In the test coverage recent report, I could only see the files under app/src/main/java being tracked. How could I combine all modules?
The text was updated successfully, but these errors were encountered: