--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
Theory: you have a fixtures data file and you ran syncdb ?
jh
I haven't used PyDev, but I would imagine it's probably importing the
management commands and running them programmatically, rather than
simply trying to run manage.py. That would explain why your IS_TEST
is False. According to the docs, PyDev has a DJANGO_SETTINGS_MODULE
variable. I suggest setting that to an alternate settings.py that
contains your test settings.
I still can't see any reason why the tests would be flushing your
tables, though. Does it happen when you issue manage.py test (using
the oracle backend) as well, or only from PyDev? Could there be
something in your app tests that might be causing the flush?