Django flush won't load fixtures

235 Views Asked by At

When I run python manage.py flush fixtures inside app wont load.

The result I'm getting is:

...    
Are you sure you want to do this?

        Type 'yes' to continue, or 'no' to cancel: yes
    Installed 0 object(s) from 0 fixture(s)
    Installed 0 object(s) from 0 fixture(s)

enter image description here

What am I doing wrong? My django version is 1.8.2

1

There are 1 best solutions below

0
On

it's not flushing the data from the disk, it's flushing the data from the test database that was setup to run your tests.