From 783618b89cb80b74f1daf03679081dd1233f49eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Wed, 25 Dec 2013 18:10:20 +0100 Subject: [PATCH] Force TAP output from Bats on CI In Travis CI environment, Bats thinks it's outputting to an interactive terminal, so it switches to "pretty" format and ANSI escape codes which don't look well in the final output. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4498f8e5..ca1abab7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ install: git clone https://github.com/sstephenson/bats.git -script: bats/bin/bats test +script: bats/bin/bats --tap test # skips unnecessary Ruby-specific setup language: c