mirror of
https://github.com/TangentFoxy/inspect.lua.git
synced 2025-07-27 18:42:18 +00:00
updates travis to include coverage & static analysis
This commit is contained in:
15
.travis.yml
15
.travis.yml
@@ -10,12 +10,21 @@ env:
|
||||
|
||||
before_install:
|
||||
- pip install hererocks
|
||||
- hererocks base -r^ --$LUA
|
||||
- export PATH=$PATH:$PWD/base/bin # Add directory with all installed binaries to PATH
|
||||
- hererocks lua_install -r^ --$LUA
|
||||
- export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH
|
||||
|
||||
install:
|
||||
- luarocks install luacheck
|
||||
- luarocks install busted
|
||||
- luarocks install luacov
|
||||
- luarocks install luacov-coveralls
|
||||
|
||||
script:
|
||||
- busted -v
|
||||
- luacheck --std max+busted *.lua spec
|
||||
- busted --verbose --coverage
|
||||
|
||||
after_success:
|
||||
- luacov-coveralls --exclude $TRAVIS_BUILD_DIR/lua_install
|
||||
|
||||
branches:
|
||||
except:
|
||||
|
@@ -2,6 +2,8 @@ inspect.lua
|
||||
===========
|
||||
|
||||
[](https://travis-ci.org/kikito/inspect.lua)
|
||||
[](https://coveralls.io/github/kikito/inspect.lua?branch=master)
|
||||
|
||||
|
||||
This library transforms any Lua value into a human-readable representation. It is especially useful for debugging errors in tables.
|
||||
|
||||
|
Reference in New Issue
Block a user