2

I am now struggling with adding code coverage to my Android test project, can someone help?

https://github.com/zisean/CarbonContact-SCC-Group1

CI: Travis

naXa stands with Ukraine
  • 35,493
  • 19
  • 190
  • 259
ZiSean
  • 127
  • 3
  • 9

1 Answers1

1

You can read the error in this line, a permission denied.

You can fix it adding the next lines to your .travis.yml:

before_install:
 - chmod +x gradlew

Alternatively, you can add the exec-permission to your gradlew script via git like this:

git update-index --chmod=+x gradlew
albodelu
  • 7,931
  • 7
  • 41
  • 84