On Thursday 12 January 2017 01:24:05 Shashank Yadav wrote:
> $ python manage.py test polls > Creating test database for alias 'default'... > Got an error creating the test database: (1044, "Access denied for > user 'myprojectuser'@'localhost' to database 'test_myproject'") > I also ran ,"GRANT ALL PRIVILEGES ON test_myproject TO > 'myprojectuser'@'localhost';" , in mysql This isn't the same as: GRANT ALL PRIVILEGES ON test_myproject.* TO ...; which is what you need. Yes, I'm making you look for the difference, so you don't forget ;) -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/2237626.m80y03hY4v%40devstation. For more options, visit https://groups.google.com/d/optout.

