codacy_upload_coverage 377 B

123456789101112
  1. #!/usr/bin/env zsh
  2. xcrun llvm-cov export .build/**/CutBoxUnitTests \
  3. -instr-profile .build/**/Coverage.profdata \
  4. -ignore-filename-regex "Pods|Sparkle|CutBoxUnitTests|View" \
  5. -format=lcov > coverage.lcov
  6. # filter BigIntegers replace with max int value 2147483647
  7. bin/replace_bigints_with_max_int coverage.lcov
  8. bash <(curl -Ls https://coverage.codacy.com/get.sh)