File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ before_install:
31
31
export LUA_DIR="$PWD/lua_install"
32
32
bash .travis/setup_luanode.sh
33
33
fi
34
+ - pip install cpp-coveralls
35
+ - luarocks install luacov
36
+ - luarocks install luacov-coveralls
34
37
35
38
install :
36
39
- luarocks install lunitx
@@ -45,5 +48,9 @@ script:
45
48
if [ "$LUANODE" = "true" ]; then
46
49
cd unittest/luanode && ./run.sh;
47
50
else
48
- cd unittest && lua run.lua;
51
+ cd unittest && lua -lluacov run.lua;
49
52
fi
53
+
54
+ after_success :
55
+ - coveralls -b .. -r .. -i ./src --dump c.report.json
56
+ - luacov-coveralls -j c.report.json -v
Original file line number Diff line number Diff line change 1
1
# Lua OAuth #
2
2
3
3
[ ![ 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 )
4
5
5
6
A Lua client library for OAuth 1.0 enabled servers.
6
7
You can’t perform that action at this time.
0 commit comments