| https://codecov.io | @codecov | hello@codecov.io |
|---|
This repository serves as an example on how to use Codecov Global for Swift.
Enable "Gather coverage data" in your test scheme:
Add to your .travis.yml file.
language: swift # or objective-c
osx_image: xcode7
script: ./test.sh
after_success:
- bash <(curl -s https://codecov.io/bash)Set
CODECOV_TOKENin your environment variables.
Add to your .travis.yml file.
after_success:
- bash <(curl -s https://codecov.io/bash) -t :uuid-repo-tokenOr you can set the enviornment variable
CODECOV_TOKENto your token.
The uploader has a boil-the-ocean approach, which can take a longer time to complete coverage report processing. We suggest you add the following to only build reports for the project being tested:
bash <(curl -s https://codecov.io/bash) -J 'SwiftExample'Use your project name instead of
SwiftExample. You can also provide multiple arguments via-J 'ProjA' -J 'ProjB'
