From 5be870fd7f9f9ff246ae596f9d215a6797c6e300 Mon Sep 17 00:00:00 2001 From: Braulio Bhavamitra Date: Fri, 6 May 2016 17:59:07 -0300 Subject: [PATCH] performance_tests: avoid random failures on the CI --- test/support/performance_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/support/performance_helper.rb b/test/support/performance_helper.rb index b4856de..4c3226c 100644 --- a/test/support/performance_helper.rb +++ b/test/support/performance_helper.rb @@ -17,7 +17,7 @@ module PerformanceHelper # On the travis/gitlab CI this can vary with servers' IO load, so # we soften to avoid failures # - NON_LINEAR_FACTOR = unless ENV['CI'] then 1.8 else 1.0 end + NON_LINEAR_FACTOR = unless ENV['CI'] then 1.8 else 0 end end -- libgit2 0.21.2