Skip to content

Commit 9a15396

Browse files
committed
Fix CI scripts and README.md badge
1 parent 460ae00 commit 9a15396

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ before_script:
4040
- "psql sequelize_test -c 'create extension postgis;' -U postgres"
4141

4242
script:
43-
- "if [ $COVERAGE ]; then npm run coveralls; else npm run test; fi"
43+
- "if [ $COVERAGE ]; then npm run ci-coverage; else npm run test; fi"
4444

4545
matrix:
4646
include:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://travis-ci.org/sequelize/sequelize.svg?branch=master)](https://travis-ci.org/sequelize/sequelize)
44
[![Windows Build status](https://ci.appveyor.com/api/projects/status/8xhttm9pxmbmtbwb/branch/master?svg=true)](https://ci.appveyor.com/project/felixfbecker/sequelize/branch/master)
5-
[![Coverage Status](https://coveralls.io/repos/github/sequelize/sequelize/badge.svg?branch=master)](https://coveralls.io/github/sequelize/sequelize?branch=master)
5+
[![codecov](https://codecov.io/gh/sequelize/sequelize/branch/master/graph/badge.svg)](https://codecov.io/gh/sequelize/sequelize)
66
[![Bountysource](https://www.bountysource.com/badge/team?team_id=955&style=bounties_received)](https://www.bountysource.com/teams/sequelize/issues?utm_source=Sequelize&utm_medium=shield&utm_campaign=bounties_received)
77
[![Slack Status](http://sequelize-slack.herokuapp.com/badge.svg)](http://sequelize.slack.com)
88
[![npm](https://img.shields.io/npm/dm/sequelize.svg?maxAge=2592000)](https://www.npmjs.com/package/sequelize)

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ before_test:
3434
- ps: . .\appveyor-setup.ps1
3535

3636
test_script:
37-
- 'IF "%COVERAGE%" == "true" (npm run coveralls) ELSE (npm test)'
37+
- 'IF "%COVERAGE%" == "true" (npm run ci-coverage) ELSE (npm test)'
3838

3939
notifications:
4040
- provider: Webhook

0 commit comments

Comments
 (0)