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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-08-18 11:15:56 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-08-18 17:31:06 +0300
commitb16f5319146ef2a47ff785ca87f7b2257dd3636b (patch)
treee2281d4bcf4e946d06c3fde193dbb71bd13e7f08 /db/fixtures
parent34960c299c256bc8470333d63ed1a4946064d6b6 (diff)
Reduce the number of build fixtures created in dev
Diffstat (limited to 'db/fixtures')
-rw-r--r--db/fixtures/development/14_builds.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/fixtures/development/14_builds.rb b/db/fixtures/development/14_builds.rb
index a6117c12930..9a3d54fb56c 100644
--- a/db/fixtures/development/14_builds.rb
+++ b/db/fixtures/development/14_builds.rb
@@ -147,7 +147,7 @@ class Gitlab::Seeder::Builds
end
Gitlab::Seeder.quiet do
- Project.all.sample(10).each do |project|
+ Project.all.sample(5).each do |project|
project_builds = Gitlab::Seeder::Builds.new(project)
project_builds.seed!
end