Skip to content

Commit

Permalink
do not run luacheck or luacov on Lua 5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske committed Jul 28, 2020
1 parent 08665b3 commit d17c78b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ before_install:
- pip install hererocks
- hererocks here -r^ --$LUA
- source here/bin/activate
- luarocks install luacheck
- if [[ ! "$LUA" == "lua 5.4" ]]; then luarocks install luacheck; fi

install:
- luarocks make
- luarocks install luacov-coveralls

script:
- luacheck .
- lua run.lua tests --luacov
- if [[ ! "$LUA" == "lua 5.4" ]]; then luacheck .; fi
- if [[ ! "$LUA" == "lua 5.4" ]]; then lua run.lua tests --luacov; else lua run.lua tests; fi

after_success:
- luacov-coveralls
- if [[ ! "$LUA" == "lua 5.4" ]]; then luacov-coveralls; fi
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ build_script:
- luarocks make

test_script:
- lua run.lua tests --luacov
- if "%LUA%"=="lua 5.4" (lua run.lua tests) else (lua run.lua tests --luacov)

on_success:
#- luacov-coveralls

0 comments on commit d17c78b

Please sign in to comment.