From bbac787615907ad06214ca2143464396d599ee5a Mon Sep 17 00:00:00 2001 From: Mike Bland Date: Sat, 30 Sep 2017 11:14:48 -0400 Subject: [PATCH] .travis.yml: Prefix test command with `time` As with the update to .appveyor.yml in the previous commit, this enables us to get an idea of the performance impact of a change. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index db06d9d..76848d1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: c -script: bin/bats --tap test +script: bash -c 'time bin/bats --tap test' notifications: email: on_success: never