From 98cd05c8572c78176a941cb98539ce20973488ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Mon, 2 Dec 2013 10:57:29 +0100 Subject: [PATCH] Increased the number of total points of a project for generate more real sample data --- greenmine/projects/management/commands/sample_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greenmine/projects/management/commands/sample_data.py b/greenmine/projects/management/commands/sample_data.py index 3741865e..06f38e64 100644 --- a/greenmine/projects/management/commands/sample_data.py +++ b/greenmine/projects/management/commands/sample_data.py @@ -274,7 +274,7 @@ class Command(BaseCommand): description='Project example {0} description'.format(counter), owner=random.choice(self.users), public=True, - total_story_points=self.sd.int(100, 150), + total_story_points=self.sd.int(600, 3000), total_milestones=self.sd.int(5,10)) return project