Skip to content

Commit b58b33f

Browse files
committed
Adds coveralls integration
Adds Converalls integration and badge.
1 parent a7cb679 commit b58b33f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.travis.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ before_install:
3131
export LUA_DIR="$PWD/lua_install"
3232
bash .travis/setup_luanode.sh
3333
fi
34+
- pip install cpp-coveralls
35+
- luarocks install luacov
36+
- luarocks install luacov-coveralls
3437

3538
install:
3639
- luarocks install lunitx
@@ -45,5 +48,9 @@ script:
4548
if [ "$LUANODE" = "true" ]; then
4649
cd unittest/luanode && ./run.sh;
4750
else
48-
cd unittest && lua run.lua;
51+
cd unittest && lua -lluacov run.lua;
4952
fi
53+
54+
after_success:
55+
- coveralls -b .. -r .. -i ./src --dump c.report.json
56+
- luacov-coveralls -j c.report.json -v

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Lua OAuth #
22

33
[![Build Status](https://travis-ci.org/ignacio/LuaOAuth.png?branch=master)](https://travis-ci.org/ignacio/LuaOAuth)
4+
[![Coverage Status](https://coveralls.io/repos/github/ignacio/LuaOAuth/badge.svg?branch=master)](https://coveralls.io/github/ignacio/LuaOAuth?branch=master)
45

56
A Lua client library for OAuth 1.0 enabled servers.
67

0 commit comments

Comments
 (0)