diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-08-18 10:15:56 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-08-18 16:31:06 +0200 |
commit | b16f5319146ef2a47ff785ca87f7b2257dd3636b (patch) | |
tree | e2281d4bcf4e946d06c3fde193dbb71bd13e7f08 /db | |
parent | 34960c299c256bc8470333d63ed1a4946064d6b6 (diff) | |
download | gitlab-ce-b16f5319146ef2a47ff785ca87f7b2257dd3636b.tar.gz |
Reduce the number of build fixtures created in dev
Diffstat (limited to 'db')
-rw-r--r-- | db/fixtures/development/14_builds.rb | 2 |
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 |