Skip to content

Commit

Permalink
chore(bugfix): rectify issue with build failing badges
Browse files Browse the repository at this point in the history
  • Loading branch information
ddouglasz committed Mar 12, 2018
1 parent 4617653 commit 1eb7bb8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
1 change: 0 additions & 1 deletion .coveralls.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .hound.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
eslint:
enabled: true
config_file: .eslintrc.json
enabled: true
config_file: .eslintrc
25 changes: 14 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
anguage: node_js
language: node_js
node_js:
- "stable"
env:
global:
- export NODE_ENV=test
- "6"
notifications:
email: false
cache:
directories:
- node_modules
before_script:
- npm install
- npm install
script:
- npm test
- npm run coverage
after_success: -
-npm report coverage
-npm run coveralls
- npm run test
- npm run check-coverage
after_success:
- npm run coverage
- npm run report-coverage
- npm run coveralls
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ npm install
* Users can review a business
* Users can delete a business
* Users can search for a business
* Users can search for a business by category
* Users can search for a business by location
* Users can search for a business by category
* Users can search for a business by location

## Run App(dummy-data)
```bash
Expand All @@ -37,5 +37,5 @@ npm run test


[![Build Status](https://travis-ci.org/ddouglasz/We-connect.svg?branch=serverside)](https://travis-ci.org/ddouglasz/We-connect)
[![Coverage Status](https://coveralls.io/repos/github/ddouglasz/We-connect/badge.svg?branch=serverside)](https://coveralls.io/github/ddouglasz/We-connect?branch=serverside)
[![Coverage Status](https://coveralls.io/repos/github/ddouglasz/We-connect/badge.svg?branch=ft-dummydata-tests-155738981)](https://coveralls.io/github/ddouglasz/We-connect?branch=ft-dummydata-tests-155738981)
[![Maintainability](https://api.codeclimate.com/v1/badges/3353fa511defef2f1372/maintainability)](https://codeclimate.com/github/ddouglasz/We-connect/maintainability)
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@
"build": "babel server -d server/dist --copy-files --ignore server/dist",
"test": "nyc --reporter=html --reporter=text mocha ./server/test/**/*.js --exit --compilers js:babel-register",
"postinstall": "npm run build",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"coveralls": "nyc --reporter=lcov --reporter=text-lcov npm test"
"coveralls": "nyc --reporter=lcov --reporter=text-lcov npm test"
},
"author": "douglas",
"license": "ISC",
Expand Down

0 comments on commit 1eb7bb8

Please sign in to comment.