Skip to content

Commit

Permalink
chore(coverage): Fix file filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeterv committed Feb 1, 2016
1 parent 18872f9 commit d40cee3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Expand Up @@ -52,7 +52,9 @@ script:
- if [ "$SERVER" == "openresty" ]; then sailor test --resty; fi

after_success:
- luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install
- mv luacov.stats.out ../..
- cd ../..
- luacov-coveralls -c test/dev-app/.luacov

notifications:
email:
Expand Down
12 changes: 12 additions & 0 deletions test/dev-app/.luacov
@@ -0,0 +1,12 @@
return {
modules = {
latclient = "src/latclient.lua",
['latclient.*'] = "src",
remy = "src/remy.lua",
['remy.*'] = "src",
sailor = "src/sailor.lua",
['sailor.*'] = "src",
['sailor.db.*'] = "src",
['web_utils.*'] = "src"
}
}

0 comments on commit d40cee3

Please sign in to comment.