I have a few apps set up, to one of which I just added a fixture. I created an "initial_data.yaml" file in a subdirectory "fixtures" under the app folder, so the full path is project_dir\apps\job\fixtures\initial_data.yaml.

I've tried both

python manage.py syncdb

and

python manage.py schemamigration job --auto

and both of them give me:

No fixtures found.

What am I doing wrong, here?

link|improve this question

How does your INSTALLED_APPS setting look? Did you create the fixture by hand? If so check it through a yaml parser for syntax errors. – Torsten May 5 '11 at 0:51
@Torsten INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', # Uncomment the next line to enable the admin: 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', 'django.contrib.webdesign', 'south', 'haystack', # Our Apps # 'jobfinder.apps.job', 'jobfinder.apps.profile', ) – Paul Zaczkowski May 5 '11 at 1:21
Went through a YAML parser, and corrected all my errors, still saying that it couldn't be found. Figured out that I needed to have PyYaml installed, but then decided to just go the JSON route. I feel like there's a piece to the puzzle that I'm missing here :/ – Paul Zaczkowski May 5 '11 at 1:22
Well, I figured out what was wrong. I simply needed to define FIXTURE_DIRS in my setting.py. For whatever reason, this isn't stated in the docs (I was under the assumption it would look for fixtures under app directories automatically, but it seems that's not the case). Maybe it would be a considerable contribution to Django ^_^. I ended up using the YAML file after-all. – Paul Zaczkowski May 5 '11 at 1:33
@paul Write an answer and put that info in it and mark it correct. It might help someone else with the same problem. – James Khoury May 5 '11 at 2:19
show 2 more comments
feedback

4 Answers

up vote 2 down vote accepted

Do you install pyYAML ?

http://pyyaml.org/wiki/PyYAML

manage.py needs yaml-parser for load initial_data.yaml.

link|improve this answer
Just wanted to point out that this is documented in the Django docs as well: docs.djangoproject.com/en/1.3/topics/serialization/#id1 Also, it is important to include the FIXTURE_DIRS setting. Hopefully this will help out anyone else that might this issue in the future :) – Paul Zaczkowski May 24 '11 at 19:05
I'm in the same directory with the initial_data.yaml to manage.py. I do not use FIXTURE_DIRS. – 99blues May 25 '11 at 5:14
feedback

i think it needs to go in

/project/job/fixtures/

assuming your app is named job

link|improve this answer
1  
This didn't make a difference :< – Paul Zaczkowski May 5 '11 at 1:19
feedback

Try the following and see how you go:

Dump your existing data, empty your DB and then try syncdb again (if you are happy to clear your DB):

python manage.py dumpdata
python manage.py syncdb

Does that work? If so, you have a 'blueprint' fixture file.

If not could you let us know which version of Django you are using?

link|improve this answer
See the final comment in my question. I ended up figuring it out. I was using Django 1.3 by the way :) Appreciate it. – Paul Zaczkowski May 5 '11 at 1:48
feedback

Django documentation clearly states:

By default, Django looks in the fixtures directory inside each app for fixtures.

But I have found that it's not true. If You don't define FIXTURE_DIRS in settings.py, then django will look for initial_data.yaml in the same directory where manage.py and settings.py are. I had this issue with django 1.3.1.

You also need to have a python yaml parser installed or django will ignore fixtures in yaml format. If You are using Ubuntu, You can install the parser by issuing the following command in the console:

sudo apt-get install python-yaml
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.