Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keplerproject/luafilesystem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgnacio Burgueño <ignacio@users.noreply.github.com>2016-01-21 21:08:25 +0300
committerIgnacio Burgueño <ignacio@users.noreply.github.com>2016-01-21 21:08:25 +0300
commit3674e4f52fdd5fda3fe8cdd153b7a8c93dfb8491 (patch)
tree7a7437d371764f6c2c968e6ed397f04c8ec2c650
parent5daddd4c2bfff60b2d7a13fa55e467b6f0ce415e (diff)
Adds missing -lluacov test
-rw-r--r--.travis.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 2dbcc89..60539a0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,14 +15,18 @@ before_install:
- source .travis/setenv_lua.sh
- pip install --user cpp-coveralls
- luarocks install Lua-cURL --server=https://luarocks.org/dev
- - luarocks install luacov-coveralls --server=https://luarocks.org/dev
+ - luarocks install lua-path
+ - luarocks install lua-cjson
+ - luarocks install luacov
+ # install luacov-coveralls, but avoids installing luafilesystem
+ - luarocks install luacov-coveralls --server=https://luarocks.org/dev --deps-mode=none
install:
- luarocks make rockspecs/luafilesystem-cvs-3.rockspec CFLAGS="-O2 -fPIC -ftest-coverage -fprofile-arcs" LIBFLAG="-shared --coverage"
script:
- cd tests
- - lua test.lua
+ - lua -lluacov test.lua
after_success:
- coveralls -b .. -r .. -i ./src --dump c.report.json