Add code coverage support
This uses coveralls.io and integrates the collection of coverage information with Travis. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
66b93ffded
commit
b823dd4ed4
|
@ -0,0 +1,26 @@
|
||||||
|
-- Configuration file for LuaCov
|
||||||
|
|
||||||
|
-- This variable is set externally
|
||||||
|
local build = os.getenv("BUILD_DIRECTORY") or error("$BUILD_DIRECTORY not set")
|
||||||
|
local lib_dir = build .. "lib/"
|
||||||
|
|
||||||
|
local function escape_pattern(str)
|
||||||
|
return string.gsub(str, "%W", "%%%1")
|
||||||
|
end
|
||||||
|
|
||||||
|
return {
|
||||||
|
statsfile = build .. "luacov.stats.out",
|
||||||
|
|
||||||
|
include = {
|
||||||
|
escape_pattern(lib_dir) .. ".+",
|
||||||
|
},
|
||||||
|
|
||||||
|
-- configuration for luacov-coveralls reporter
|
||||||
|
coveralls = {
|
||||||
|
pathcorrect = {
|
||||||
|
{ escape_pattern(lib_dir), "lib/"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|
|
@ -5,7 +5,7 @@ env:
|
||||||
matrix:
|
matrix:
|
||||||
# Note: luarocks does not work with Lua 5.0.
|
# Note: luarocks does not work with Lua 5.0.
|
||||||
- LUA=5.1 LGIVER= LUANAME=lua5.1
|
- LUA=5.1 LGIVER= LUANAME=lua5.1
|
||||||
- LUA=5.2 LGIVER= LUANAME=lua5.2 BUILD_APIDOC=true
|
- LUA=5.2 LGIVER= LUANAME=lua5.2 BUILD_APIDOC=true DO_COVERAGE=true
|
||||||
- LUA=5.2 LGIVER=0.7.1 LUANAME=lua5.2
|
- LUA=5.2 LGIVER=0.7.1 LUANAME=lua5.2
|
||||||
# luajit: requires --lua-suffix=jit-2.0.0-beta9 in Ubuntu precise.
|
# luajit: requires --lua-suffix=jit-2.0.0-beta9 in Ubuntu precise.
|
||||||
# Later versions seem to provide a `luajit` symlink, so `jit` would be enough.
|
# Later versions seem to provide a `luajit` symlink, so `jit` would be enough.
|
||||||
|
@ -73,6 +73,9 @@ install:
|
||||||
- travis_retry sudo luarocks install ldoc
|
- travis_retry sudo luarocks install ldoc
|
||||||
- travis_retry sudo luarocks install lua-discount
|
- travis_retry sudo luarocks install lua-discount
|
||||||
|
|
||||||
|
# Instal luacov-coveralls for code coverage testing.
|
||||||
|
- if [ "$DO_COVERAGE" = "true" ]; then sudo luarocks install luacov-coveralls; fi
|
||||||
|
|
||||||
# Determine custom version.
|
# Determine custom version.
|
||||||
- export AWESOME_VERSION="${TRAVIS_BRANCH}-g$(git rev-parse --short HEAD)"
|
- export AWESOME_VERSION="${TRAVIS_BRANCH}-g$(git rev-parse --short HEAD)"
|
||||||
- 'if [ "$TRAVIS_PULL_REQUEST" != false ]; then AWESOME_VERSION="${AWESOME_VERSION}-PR${TRAVIS_PULL_REQUEST}"; fi'
|
- 'if [ "$TRAVIS_PULL_REQUEST" != false ]; then AWESOME_VERSION="${AWESOME_VERSION}-PR${TRAVIS_PULL_REQUEST}"; fi'
|
||||||
|
@ -80,7 +83,10 @@ install:
|
||||||
script:
|
script:
|
||||||
- export CMAKE_ARGS="-DLUA_LIBRARY=${LUALIBRARY} -DLUA_INCLUDE_DIR=${LUAINCLUDE} -D OVERRIDE_VERSION=$AWESOME_VERSION"
|
- export CMAKE_ARGS="-DLUA_LIBRARY=${LUALIBRARY} -DLUA_INCLUDE_DIR=${LUAINCLUDE} -D OVERRIDE_VERSION=$AWESOME_VERSION"
|
||||||
- make && sudo env PATH=$PATH make install && awesome --version && make check
|
- make && sudo env PATH=$PATH make install && awesome --version && make check
|
||||||
|
- if [ "$DO_COVERAGE" = "true" ]; then make check-coverage; fi
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
# Push updated API docs for relevant branches, e.g. non-PRs builds on master.
|
# Push updated API docs for relevant branches, e.g. non-PRs builds on master.
|
||||||
- if [ "$BUILD_APIDOC" = "true" ]; then build-utils/travis-apidoc.sh; fi
|
- if [ "$BUILD_APIDOC" = "true" ]; then build-utils/travis-apidoc.sh; fi
|
||||||
|
# Push code coverage information
|
||||||
|
- if [ "$DO_COVERAGE" = "true" ]; then BUILD_DIRECTORY="$(pwd)/$(readlink build)/" luacov-coveralls --verbose --merge; fi
|
||||||
|
|
|
@ -368,6 +368,14 @@ if(BUSTED_EXECUTABLE)
|
||||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||||
COMMENT "Running unit tests"
|
COMMENT "Running unit tests"
|
||||||
VERBATIM)
|
VERBATIM)
|
||||||
|
add_custom_target(check-coverage
|
||||||
|
"BUILD_DIRECTORY=${CMAKE_BINARY_DIR}/"
|
||||||
|
${BUSTED_EXECUTABLE} "--helper=${CMAKE_SOURCE_DIR}/spec/preload.lua"
|
||||||
|
"--lpath=${CMAKE_BINARY_DIR}/lib/?.lua;${CMAKE_BINARY_DIR}/lib/?/init.lua;spec/?.lua"
|
||||||
|
"--coverage"
|
||||||
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||||
|
COMMENT "Running unit tests under LuaCov"
|
||||||
|
VERBATIM)
|
||||||
endif()
|
endif()
|
||||||
add_custom_target(check-integration
|
add_custom_target(check-integration
|
||||||
"${CMAKE_SOURCE_DIR}/tests/run.sh"
|
"${CMAKE_SOURCE_DIR}/tests/run.sh"
|
||||||
|
|
Loading…
Reference in New Issue