Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-10 22:26:27 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-10 22:26:27 +0400
commit96fbef60f962e57da5da2d3603e48fadfe959062 (patch)
treebc78ce3ec4c7060295228c88ec145099a7f69375 /features/support
parent473efc82b68dcaac61be55466e423fdbbabde710 (diff)
add coveralls.io to travis builds
Diffstat (limited to 'features/support')
-rw-r--r--features/support/env.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/features/support/env.rb b/features/support/env.rb
index 2fd7ffdb813..03521afb9a1 100644
--- a/features/support/env.rb
+++ b/features/support/env.rb
@@ -1,5 +1,10 @@
require 'simplecov' unless ENV['CI']
+if ENV['TRAVIS']
+ require 'coveralls'
+ Coveralls.wear!
+end
+
ENV['RAILS_ENV'] = 'test'
require './config/environment'