Re: admin css not working

2016-07-17 Thread Tim Graham
Do you have DEBUG=False in your settings? That disables automatic serving of static files: https://docs.djangoproject.com/en/stable/howto/static-files/#serving-static-files-during-development On Sunday, July 17, 2016 at 6:52:23 AM UTC-4, pritesh singh wrote: > > The stylesheet http://127.0.0.1:8

Re: Disabling migrations when running tests

2016-07-17 Thread Tim Graham
> > BTW: Would you consider bringing back patch > https://github.com/django/django/commit/157d7f1f1de4705daddebb77f21bd7097a74513d > > ? This patch is what I've asking for months. > > Marcin > Yes -- that patch didn't work properly as noted on the ticket. We'll certainly include a working pat

Re: Disabling migrations when running tests

2016-07-17 Thread Derek
Please ignore this! My apologies - I read "fixtures" instead of "migrations". On Sunday, 17 July 2016 15:13:05 UTC+2, Derek wrote: > > I use a small "hack" which Works For Me :) > > I use a shell script to run the tests (call it, for example, `tester.sh`) > :- > > mv myapp/fixtures myapp/_fixtu

Re: Disabling migrations when running tests

2016-07-17 Thread Derek
I use a small "hack" which Works For Me :) I use a shell script to run the tests (call it, for example, `tester.sh`) :- mv myapp/fixtures myapp/_fixtures python manage.py test --traverse-namespace tests --settings=test_settings mv myapp/_fixtures myapp/fixtures So; basically rename the fixtures

Re: Disabling migrations when running tests

2016-07-17 Thread marcin . j . nowak
On Sunday, July 17, 2016 at 3:08:49 AM UTC+2, Tim Graham wrote: > > You can use MIGRATION_MODULES for this: > https://docs.djangoproject.com/en/1.9/ref/settings/#migration-modules > > Also, there's a ticket to simplify disabling of migrations during tests > further: https://code.djangoproject.c