coverage.sh 171 B

123456789
  1. #!/usr/bin/env bash
  2. set -o errexit
  3. SOLIDITY_COVERAGE=true scripts/test.sh
  4. if [ "$CI" = true ]; then
  5. curl -s https://codecov.io/bash | bash -s -- -C "$CIRCLE_SHA1"
  6. fi