From e361a1e8731ce08f7a632b3914e7a0454191e01d Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 24 Jun 2010 17:05:12 -0500 Subject: Get unit tests up and running again We had some dependency issues between migrations that needed to be explicitly defined in order to get things fully moving, and do to some braindeadness in Django tests not including the project url config, we need to do some clever business when using the url tag in the base template so tests don't doe with a NoReverseMatch exception. Signed-off-by: Dan McGee --- packages/migrations/0002_populate_package_relation.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'packages/migrations') diff --git a/packages/migrations/0002_populate_package_relation.py b/packages/migrations/0002_populate_package_relation.py index 7f90350..738e068 100644 --- a/packages/migrations/0002_populate_package_relation.py +++ b/packages/migrations/0002_populate_package_relation.py @@ -6,7 +6,9 @@ from django.db import models class Migration(DataMigration): - no_dry_run = True + depends_on = ( + ("main", "0003_migrate_maintainer"), + ) def forwards(self, orm): "Write your forwards methods here." -- cgit v1.2.3-24-g4f1b