diff --git a/icekit_events/tests/settings.py b/icekit_events/tests/settings.py index 51b852b..c83ae31 100644 --- a/icekit_events/tests/settings.py +++ b/icekit_events/tests/settings.py @@ -71,6 +71,7 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static') DDF_FILL_NULLABLE_FIELDS = False +DDF_IGNORE_FIELDS = ['*_ptr'] # Ignore django-polymorphic pointer fields FLUENT_PAGES_TEMPLATE_DIR = os.path.join(BASE_DIR, '..', 'templates') TEMPLATES = [ diff --git a/setup.py b/setup.py index 9e75e9f..1607869 100644 --- a/setup.py +++ b/setup.py @@ -65,11 +65,12 @@ 'fluentevent': ['django-fluent-contents'], 'postgres': ['psycopg2'], 'test': [ - 'coverage', 'django-nose', 'nose-progressive', 'django-webtest', 'WebTest', - # TODO Specific version of django-dynamic-fixture is necessary to avoid - # AttributeError: can't set attribute` failures on polymorphic models. - # See https://github.com/paulocheque/django-dynamic-fixture/pull/59 - 'django-dynamic-fixture==1.9.0+0.caeb3427399edd3b0d589516993c7da55e0de560.ixc', + 'coverage', + 'django-dynamic-fixture', + 'django-nose', + 'django-webtest', + 'nose-progressive', + 'WebTest', ] }, setup_requires=['setuptools_scm'],