Tell Travis not to fail if some tests are skipped

This commit is contained in:
Evgeniy Khramtsov 2016-03-22 19:03:06 +03:00
parent 57f7b34b90
commit bdce5556bd
1 changed files with 2 additions and 1 deletions

View File

@ -54,7 +54,8 @@ script:
- sed -i -e 's/ct:pal/ct:log/' test/suite.erl
- ln -sf ../sql priv/
- escript ./rebar skip_deps=true ct -v
- grep -q 'TEST COMPLETE, \([[:digit:]]*\) ok, .* of \1 ' logs/raw.log
#- grep -q 'TEST COMPLETE, \([[:digit:]]*\) ok, .* of \1 ' logs/raw.log
grep -q 'TEST COMPLETE, \([[:digit:]]*\) ok, 0 failed' logs/raw.log
after_script:
- find logs -name suite.log -exec cat '{}' ';'