I try tu run Django test on WEBFACTION server and I get ERROR: Creating test database for alias 'default'... Got an error creating the test database: permission denied to create database I need to use WEFACTION apir xmlrpc.client. But I do not know what where I need to make changes. Should i change django.db files or I need to create some test files within app floder? asked 12 Feb '14, 14:41 hefasut |
You're getting the error because you don't have permissions to create databases directly on our shared database instance. It's conceivable that you could hack Django's test code to use our API to create the database for you, but a better approach would be to either...
Hope that helps! answered 12 Feb '14, 20:17 seanf Yep that helped, Thanks! :)
(13 Feb '14, 07:20)
hefasut
|