Skip to content

Commit

Permalink
add coverage badges
Browse files Browse the repository at this point in the history
  • Loading branch information
debris committed Oct 17, 2017
1 parent 9c410cc commit a53408c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
@@ -1,9 +1,11 @@
# ethabi

[![Build Status][travis-image]][travis-url]
[![Build Status][travis-image]][travis-url][![Build coverage][coveralls-image]][coveralls-url]

[travis-image]: https://travis-ci.org/paritytech/ethabi.svg?branch=master
[travis-url]: https://travis-ci.org/paritytech/ethabi
[coveralls-image]: https://coveralls.io/repos/github/paritytech/ethabi/badge.svg?branch=master
[coveralls-url]: http://coveralls.io/github/paritytech/ethabi?branch=master

The ABI, Application Binary Interface, is basically how you call functions in a contract and get data back.

Expand Down
6 changes: 5 additions & 1 deletion ethabi/Cargo.toml
Expand Up @@ -13,7 +13,11 @@ serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
tiny-keccak = "1.3"
error-chain = { version = "0.11.0", default-features = false }
error-chain = { version = "0.11", default-features = false }

[features]
backtrace = ["error-chain/backtrace"]

[badges]
travis-ci = { repository = "paritytech/ethabi", branch = "master" }
coveralls = { repository = "paritytech/ethabi", branch = "master" }

0 comments on commit a53408c

Please sign in to comment.