Skip to content

Commit

Permalink
Remove codecov node package and use bash uploader (#5938)
Browse files Browse the repository at this point in the history
* Remove codecov node package and use bash uploader

* test
  • Loading branch information
existentialism authored and jridgewell committed Jul 12, 2017
1 parent 72183ff commit 81e87b0
Show file tree
Hide file tree
Showing 4 changed files with 4,611 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -11,6 +11,7 @@ test/tmp
/runtime.js
/coverage
dist
package-lock.json
/.package.json
/packages/babel-runtime/core-js
/packages/babel-runtime/helpers/*.js
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Expand Up @@ -4,7 +4,7 @@ export NODE_ENV = test

# Fix color output until TravisCI fixes travis-ci/travis-ci/issues/7967
export FORCE_COLOR = true

.PHONY: build build-dist watch lint fix clean test-clean test-only test test-ci publish bootstrap

build: clean
Expand Down Expand Up @@ -55,10 +55,11 @@ test-ci:
make bootstrap
make test-only

test-ci-coverage: SHELL:=/bin/bash
test-ci-coverage:
BABEL_ENV=cov make bootstrap
./scripts/test-cov.sh
./node_modules/.bin/codecov -f coverage/coverage-final.json
bash <(curl -s https://codecov.io/bash) -f coverage/coverage-final.json

publish:
git pull --rebase
Expand Down
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -23,8 +23,7 @@
"browserify": "^13.1.1",
"bundle-collapser": "^1.2.1",
"chai": "^3.5.0",
"chalk": "1.1.1",
"codecov": "^1.0.1",
"chalk": "^1.1.1",
"derequire": "^2.0.2",
"eslint": "^3.9.0",
"eslint-config-babel": "^6.0.0",
Expand Down

0 comments on commit 81e87b0

Please sign in to comment.