Skip to content

Commit

Permalink
Activate colored output (for CI) on Travis and AppVeyor
Browse files Browse the repository at this point in the history
  • Loading branch information
n1tehawk committed Nov 18, 2016
1 parent ad308a8 commit b573a06
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ matrix:

before_install:
- source .travis/setenv_lua.sh
- luarocks install luacheck
- luarocks install luacov-coveralls
- luarocks install luacheck luacov-coveralls

script:
- lua -v -lluacov run_unit_tests.lua --random
- lua run_functional_tests.lua --coverage
- lua -v -lluacov run_unit_tests.lua --random --output color
- lua run_functional_tests.lua --coverage --output color
- luacheck *.lua test/

after_success:
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ build: off

test_script:
- cmd: >-
%LUA% -v run_unit_tests.lua --random
%LUA% -v run_unit_tests.lua --random --output color
%LUA% run_functional_tests.lua
%LUA% run_functional_tests.lua --output color

0 comments on commit b573a06

Please sign in to comment.