From 9a1fceaa297a76979560a276bb513203a1e7a9ef Mon Sep 17 00:00:00 2001 From: Joseph Wynn Date: Sat, 6 Dec 2014 16:03:10 +0000 Subject: [PATCH] Enable Coveralls --- .gitignore | 1 + features/support/env.rb | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index b844b14..3e3704e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ +coverage Gemfile.lock diff --git a/features/support/env.rb b/features/support/env.rb index 5517897..0a6e910 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -1,7 +1,6 @@ -begin - require 'coveralls' if ENV['CI'] -rescue LoadError - # ignore +if ENV['CI'] + require 'coveralls' + Coveralls.wear! end require 'test/unit'