Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove codecov node package and use bash uploader #5938

Merged
merged 2 commits into from Jul 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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