Remove the test.log file for each run, use cat's "-v" option

This commit is contained in:
Marco Castelluccio 2014-09-16 12:58:19 -07:00
Родитель 31f361c32d
Коммит 268ebc7382
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -9,5 +9,3 @@ before_script:
- npm install slimerjs - npm install slimerjs
script: script:
- make test - make test
after_script:
- cat test.log

Просмотреть файл

@ -3,10 +3,12 @@
all: java tests all: java tests
test: all test: all
rm test.log
killall python Python || true killall python Python || true
python -m SimpleHTTPServer & python -m SimpleHTTPServer &
casperjs --engine=slimerjs test `pwd`/tests/automation.js > test.log 2>&1 casperjs --no-colors --engine=slimerjs test `pwd`/tests/automation.js > test.log 2>&1
killall python Python || true killall python Python || true
cat -v test.log
if grep -q FAIL test.log; \ if grep -q FAIL test.log; \
then false; \ then false; \
else true; \ else true; \