Hello Devs, I have integrated danger tool in my co...
# android
k
Hello Devs, I have integrated danger tool in my code base but facing the issue where I have created the new interface in the codebase and danger gives me the error that [!] Invalid 
FILENAME
 file: No coverage data found for com/android/----path name ----/ABCD(Interface name)
Copy code
#  from danger/FILENAME: line number 4
 #  -------------------------------------------
 #  jacoco.files_extension = ['.kt', '']
 >  jacoco.report('build/codecov-report/jacocoTestReport.xml')
 #  
 #  -------------------------------------------
this is the actual file :
Copy code
# Check Code Coverage (see <https://github.com/Malinskiy/danger-jacoco>)
jacoco.minimum_project_coverage_percentage = 2.2
jacoco.files_extension = ['.kt']
jacoco.report('build/codecov-report/jacocoTestReport.xml')

message("Download the full coverage report [here](PATH/actions/runs/#{ENV['RUN_ID']}) in the 'Artifacts' section.")
Here the error is line number 4 which is
Copy code
jacoco.report('build/codecov-report/jacocoTestReport.xml')
Anyone has any idea about this ?